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 d515638 commit 0cba75dCopy full SHA for 0cba75d
plugwise/__init__.py
@@ -180,8 +180,10 @@ async def connect(self) -> Version:
180
for appliance in result_dict["domain_objects"]["appliance"]:
181
module_set = False
182
appliance, module_set = add_module_to_appliance(appliance, modules)
183
+ # Set gateway firmwware_version
184
if appliance["type"] == "gateway":
185
appliance["module"]["firmware_version"] = result_dict["domain_objects"]["gateway"]["firmware_version"]
186
+ # TODO set zigbee mac(s)
187
if not module_set:
188
modules = collect_module_data(result, count=2) # repeat trying with 2nd id
189
0 commit comments