blob: 91d5ab3c28dd1ca0c7c156fe5b2825c214f5bd25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef INDICATOR_INCLUDED
#define INDICATOR_INCLUDED
#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
#endif /* INDICATOR_INCLUDED */
|