We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28fb17d commit fefebdaCopy full SHA for fefebda
plugwise/__init__.py
@@ -82,13 +82,15 @@ def _all_device_data(self) -> None:
82
"""
83
for device_id, device in self._appl_data.items():
84
self.gw_devices.update({device_id: cast(DeviceData, device)})
85
+
86
data = self._get_device_data(device_id)
87
# Add plugwise notification binary_sensor to the relevant gateway
88
if device_id == self.gateway_id and (
89
self._is_thermostat
90
or (not self._smile_legacy and self.smile_type == "power")
91
):
92
data["binary_sensors"]["plugwise_notification"] = False
93
94
self.gw_devices[device_id].update(data)
95
96
# Update for cooling
0 commit comments