From ef81a4d74227ac8fb82b0d153ae85b25cfc7b18b Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 9 Jun 2024 00:14:57 +0200 Subject: [PATCH] Auto: Meditation mode turned off --- auto/burrow-auto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/burrow-auto b/auto/burrow-auto index 28b7c85..b876223 100755 --- a/auto/burrow-auto +++ b/auto/burrow-auto @@ -154,7 +154,7 @@ def auto_loft_fan(): lt = st.get_sensor_avg("temp/loft") out = st.get_sensor_avg('air/outside-intake') - if st.hour in range(21, 24) or st.hour in range(6, 10): + if False and st.hour in range(21, 24) or st.hour in range(6, 10): fs = 0 elif lt is None or out is None: fs = 0 -- 2.39.2