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 696a592 commit 478ea69Copy full SHA for 478ea69
plugwise/__init__.py
@@ -126,6 +126,9 @@ def _all_device_data(self) -> None:
126
"""
127
self._update_gw_devices()
128
self.device_items = self._count
129
+ for device in self.gw_devices:
130
+ self.device_list.append(device)
131
+
132
self.gw_data.update(
133
{
134
"gateway_id": self.gateway_id,
plugwise/helper.py
@@ -265,6 +265,7 @@ def __init__(self) -> None:
265
self._cooling_enabled = False
266
267
self.device_items: int = 0
268
+ self.device_list: list[str] = []
269
self.gateway_id: str
270
self.gw_data: GatewayData = {}
271
self.gw_devices: dict[str, DeviceData] = {}
0 commit comments