From 52e63a3cc90813ada37ba4929d2745a88ec7bc7f Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Mon, 12 Feb 2018 16:56:48 +0200 Subject: tempmodule: implement indicator leds. --- src/tempmodule/indicator.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/tempmodule/indicator.h (limited to 'src/tempmodule/indicator.h') 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 -- cgit v1.2.3