diff options
author | 2018-02-12 16:56:48 +0200 | |
---|---|---|
committer | 2018-02-12 16:56:48 +0200 | |
commit | 52e63a3cc90813ada37ba4929d2745a88ec7bc7f (patch) | |
tree | f9409102686df5ddd2c22fcb7e0a889151b898e4 /src/tempmodule/indicator.h | |
parent | c6d9306e023205ddc8d3d0aac98dbc11d6aee766 (diff) | |
download | coffeetemp-52e63a3cc90813ada37ba4929d2745a88ec7bc7f.tar.gz coffeetemp-52e63a3cc90813ada37ba4929d2745a88ec7bc7f.tar.bz2 coffeetemp-52e63a3cc90813ada37ba4929d2745a88ec7bc7f.zip |
tempmodule: implement indicator leds.
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 |