From d3afaefce08665fb26e783bd05c434bad2aac8c1 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sat, 14 Jan 2023 19:39:51 +0100 Subject: [PATCH] bug-fix missing all_off ffw/bath --- function/first_floor_west.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/function/first_floor_west.py b/function/first_floor_west.py index cde09bd..7135ba8 100644 --- a/function/first_floor_west.py +++ b/function/first_floor_west.py @@ -26,6 +26,8 @@ class first_floor_west_bath(object): # radiator valve self.radiator_function = radiator_function(mqtt_client, config.TOPIC_FFW_BATH_RADIATOR_VALVE_ZIGBEE, config.TOPIC_FFW_BATH_RADIATOR_VALVE_GUI, config.DEFAULT_TEMPERATURE_FFW_BATH) + def all_off(self): + pass class first_floor_west_living(room_shelly_tradfri_light):