|
@@ -81,7 +81,7 @@ class ground_floor_west_marion(room):
|
81
|
81
|
self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_state_mcb)
|
82
|
82
|
|
83
|
83
|
self.gui_heating = devices.nodered_gui_radiator(mqtt_client, config.TOPIC_GFW_MARION_HEATING_VALVE_GUI)
|
84
|
|
- self.heating_function.add_callback(heating_function.KEY_TEMPERATURE_SETPOINT, None, self.gui_heating.set_temperature_mcb, True)
|
|
84
|
+ self.heating_function.add_callback(heating_function.KEY_TEMPERATURE_CURRENT, None, self.gui_heating.set_temperature_mcb, True)
|
85
|
85
|
|
86
|
86
|
def set_heating_setpoint(device, key, data):
|
87
|
87
|
self.heating_function.set(heating_function.KEY_USER_TEMPERATURE_SETPOINT, data)
|
|
@@ -225,6 +225,7 @@ class ground_floor_west_dirk(room):
|
225
|
225
|
self.powerplug_common.add_callback(self.KEY_POWERPLUG_PC_DOCK, None, self.gui_pc_dock.set_state_mcb)
|
226
|
226
|
|
227
|
227
|
self.gui_heating = devices.nodered_gui_radiator(mqtt_client, config.TOPIC_GFW_DIRK_HEATING_VALVE_GUI)
|
|
228
|
+ self.heating_function.add_callback(heating_function.KEY_TEMPERATURE_CURRENT, None, self.gui_heating.set_temperature_mcb, True)
|
228
|
229
|
|
229
|
230
|
def set_heating_setpoint(device, key, data):
|
230
|
231
|
self.heating_function.set(heating_function.KEY_USER_TEMPERATURE_SETPOINT, data)
|
|
@@ -294,7 +295,6 @@ class ground_floor_west_dirk(room):
|
294
|
295
|
mqtt_client, config.TOPIC_GFW_DIRK_ACTIVE_BRIGHTNESS_DEVICE_VIDEV,
|
295
|
296
|
brightness_choose_n_action.KEY_ACTIVE_DEVICE, self.brightness_functions, 3
|
296
|
297
|
)
|
297
|
|
-
|
298
|
298
|
#
|
299
|
299
|
# Other stuff
|
300
|
300
|
#
|