From c5c11908964fca938ffa58cd0c3de06cb8b56cf9 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 29 Dec 2023 20:44:31 +0100 Subject: [PATCH] Iris: Cleanup --- rainbow/iris/burrow-iris.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rainbow/iris/burrow-iris.py b/rainbow/iris/burrow-iris.py index 24865a8..edd7d26 100755 --- a/rainbow/iris/burrow-iris.py +++ b/rainbow/iris/burrow-iris.py @@ -76,20 +76,20 @@ led_event = None def boiler_led(): stat = st.get_status('bsb', 'ok') if stat != 'ok': - return (1, 1, 0) + return (1, 0.1, 0.1) # pastel red err = st.get_sensor('heating/error', 0, timeout=None) if err > 0: - return (1, 0, 0) + return (1, 0, 0) # red if st.get_sensor('heating/circuit1/pump', 0, timeout=3600) > 0: - return (0.2, 0, 0.2) + return (0.2, 0, 0.2) # magenta if st.get_sensor('heating/circuit2/active', 0, timeout=3600) > 0: - return (0, 0.3, 0) + return (0.2, 0.2, 0) # yellow if st.get_sensor('heating/water/active', 0, timeout=3600) > 0: - return (0, 0, 0.3) + return (0, 0.2, 0.2) # cyan return None @@ -97,16 +97,16 @@ def boiler_led(): def catarium_led(): temp = st.get_sensor('temp/catarium') if temp is None: - return (1, 0, 0) + return (1, 0, 0) # red if temp < 22: - return (0, 0, 1) + return (0, 0, 1) # blue if temp < 23: - return (0, 0.5, 0.5) + return (0.3, 0.3, 0.7) # pastel blue if temp > 26: - return (0.1, 0.1, 0) + return (0.7, 0.7, 0.1) # pastel yellow return None -- 2.39.2