From 36556e8529513dbfb0f9056a79820610513d8576 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Tue, 26 Aug 2025 21:24:16 +0200 Subject: [PATCH] fix for gar devices --- rooms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rooms.py b/rooms.py index 1df9625..b2c803e 100644 --- a/rooms.py +++ b/rooms.py @@ -311,10 +311,10 @@ class gar_garden(base_room): loc = props.LOC_GAR roo = props.ROO_GAR # - self.switch_garland_light = shelly_sw1(mqtt_client, get_topic(props.STG_SHE, loc, roo, props.FUN_GAR)) + self.switch_garland_light = silvercrest_powerplug(mqtt_client, get_topic(props.STG_SHE, loc, roo, props.FUN_GAR)) self.videv_garland_light = videv_sw(mqtt_client, get_topic(props.STG_VDE, loc, roo, props.FUN_GAR)) - self.videv_repeater = videv_sw(mqtt_client, get_topic(props.STG_VDE, loc, roo, props.FUN_REP)) + self.videv_repeater = silvercrest_powerplug(mqtt_client, get_topic(props.STG_VDE, loc, roo, props.FUN_REP)) self.switch_repeater = shelly_sw1(mqtt_client, get_topic(props.STG_ZGW, loc, roo, props.FUN_REP)) self.videv_mode = videv_pure_switch(mqtt_client, get_topic(props.STG_ZGW, loc, roo, props.FUN_MOD))