From df772cedd84204136f203409b655f35444837f3f Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 27 Feb 2022 00:42:37 +0100 Subject: [PATCH] Telegram: Updated temperature thresholds --- telegram/burrow-telegram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/burrow-telegram.py b/telegram/burrow-telegram.py index be093b9..f763af0 100755 --- a/telegram/burrow-telegram.py +++ b/telegram/burrow-telegram.py @@ -116,7 +116,7 @@ async def mqtt_process_msg(topic, val): if when < now.timestamp() - 3600: temp_state = 0 else: - temp_state = hysteresis('catarium-temp', temp, 23.2, 23.5) + temp_state = hysteresis('catarium-temp', temp, 22, 23) if temp_state != last_temp_state: last_temp_state = temp_state if temp_state == 0: -- 2.39.2