From 30a35cea73611523ba463c8b68035811b94233fa Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 10 Nov 2019 17:19:18 +0100 Subject: [PATCH] Auto: Winter mode --- auto/burrow-auto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/auto/burrow-auto b/auto/burrow-auto index 12fd420..4dba420 100755 --- a/auto/burrow-auto +++ b/auto/burrow-auto @@ -154,7 +154,7 @@ def auto_loft_fan(): def auto_circ(): global st - if st.hour in range(20, 22): + if st.hour in range(7, 24): c = 1 else: c = 0; @@ -175,6 +175,11 @@ def auto_air(): else: ac_off = st.hysteresis('ac_off', tmix, tie - 5, tie - 4) + # XXX: Temporarily disabled + house_warm = -1 + house_hot = -1 + ac_off = 1 + # Do we want to bypass the heat exchanger? outside_warmer = st.hysteresis('outside_warmer', diff(toi, tii), -0.5, 0.5) if (house_warm > 0) and (outside_warmer > 0) or \ -- 2.39.2