Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
🖐️show 5 instead of 0 when the thermostat is off
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin authored Dec 29, 2018
1 parent edbb54c commit 210e0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InComfort.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
def _lsbmsb(lsb, msb):
temp = (lsb + msb*256) / 100.0
if temp == 327.67:
return 0
return 5
else:
return temp

Expand Down

0 comments on commit 210e0b6

Please sign in to comment.