diff options
author | 2018-02-09 13:29:47 +0200 | |
---|---|---|
committer | 2018-02-09 13:29:47 +0200 | |
commit | 1544aff61d63c57f40add613df979984c87198e9 (patch) | |
tree | 1d2e6504fe5f273690a19f3be19229c6e820119b /src/tempmodule | |
parent | 10ac1b5b26e3907073ab921898f5da929b581513 (diff) | |
download | coffeetemp-1544aff61d63c57f40add613df979984c87198e9.tar.gz coffeetemp-1544aff61d63c57f40add613df979984c87198e9.tar.bz2 coffeetemp-1544aff61d63c57f40add613df979984c87198e9.zip |
tempmodule: fixed missing colon.
Diffstat (limited to 'src/tempmodule')
-rw-r--r-- | src/tempmodule/main.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tempmodule/main.ino b/src/tempmodule/main.ino index 2a76f36..c75d8b0 100644 --- a/src/tempmodule/main.ino +++ b/src/tempmodule/main.ino @@ -229,7 +229,7 @@ static int get_temperature(int res) /* If no matching resistance is found, calculate temp from subrange. */ } else if (res > lt[i].res && res < lt[i + 1].res) { ret = lt[i].temp + get_temp_subrange(lt[i].res, lt[i + 1].res, res); - break + break; } return ret; |