15 lines
335 B
C
15 lines
335 B
C
/**
|
|
* @file tire_data.h
|
|
* @brief Tire data for calibration of HTPA sensor
|
|
* @author Tim-Erik Düntzsch t.duentzsch@fasttube.de
|
|
*
|
|
* @date 27.03.2023 - first implementation (untested)
|
|
*/
|
|
|
|
#ifndef INC_TIRE_DATA_H_
|
|
#define INC_TIRE_DATA_H_
|
|
|
|
uint8_t epsilon = 94; // emissivity of 0.94 (tire rubber)
|
|
|
|
|
|
#endif /* INC_TIRE_DATA_H_ */ |