blob: 21eec29758fca9b8db90dde861c5ad67633600e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifdef __cplusplus
extern "C" {
#endif
void indicator_init(unsigned int temp, unsigned int const * const calibration);
void indicator_update(unsigned int temp);
void indicator_calibrate(unsigned int const * const calibration);
#ifdef __cplusplus
}
#endif
|