diff options
author | 2018-04-27 13:53:54 +0300 | |
---|---|---|
committer | 2018-04-27 13:53:54 +0300 | |
commit | d5ac1ee5534710e105b699d2069b6b6f9b6869d3 (patch) | |
tree | c4b660b9a64edea7a8e8b37c26c97fe49d0ba866 /src/tempmodule/indicator.h | |
parent | efb5d035b11f97f1d83302147e5f691f81439a3a (diff) | |
download | coffeetemp-d5ac1ee5534710e105b699d2069b6b6f9b6869d3.tar.gz coffeetemp-d5ac1ee5534710e105b699d2069b6b6f9b6869d3.tar.bz2 coffeetemp-d5ac1ee5534710e105b699d2069b6b6f9b6869d3.zip |
tempmodule: report error state by turning on all temperatre LEDs.
Diffstat (limited to 'src/tempmodule/indicator.h')
-rw-r--r-- | src/tempmodule/indicator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tempmodule/indicator.h b/src/tempmodule/indicator.h index d44b7fe..99f4e1c 100644 --- a/src/tempmodule/indicator.h +++ b/src/tempmodule/indicator.h @@ -25,9 +25,9 @@ extern "C" { #endif -void indicator_init(unsigned int temp, unsigned int const * const calibration); -void indicator_update(const unsigned int temp, const unsigned int on); -void indicator_calibrate(unsigned int const * const calibration); +void indicator_init(int temp, unsigned int const * const calibration); +void indicator_update(const int temp, const unsigned int on); +void indicator_calibrate(int const * const calibration); #ifdef __cplusplus } |