diff options
Diffstat (limited to 'src/tempmodule/indicator.h')
-rw-r--r-- | src/tempmodule/indicator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tempmodule/indicator.h b/src/tempmodule/indicator.h new file mode 100644 index 0000000..21eec29 --- /dev/null +++ b/src/tempmodule/indicator.h @@ -0,0 +1,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 |