Skip to content

Commit

Permalink
Correct temperature envelope
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnhan committed Aug 14, 2024
1 parent 125a5b2 commit eec3326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/f70h/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
F70_INST_NAME: str = ""
REFRESH_INTERVAL_MS: int = 1000
WATER_WARNING_TEMP: int = 28
WATER_TEMP_ENVELOPE: tuple[int, int] = (5, 10)
WATER_TEMP_ENVELOPE: tuple[int, int] = (5, 26)

log = logging.getLogger("F70H")
log.setLevel(logging.INFO)
Expand Down

0 comments on commit eec3326

Please sign in to comment.