From: Martin Mares Date: Sun, 10 Nov 2019 16:19:18 +0000 (+0100) Subject: Auto: Winter mode X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=30a35cea73611523ba463c8b68035811b94233fa;p=home-hw.git Auto: Winter mode --- 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 \