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 d5a85c7 commit de554c4Copy full SHA for de554c4
plugwise/helper.py
@@ -446,6 +446,9 @@ def _get_module_data(
446
# Stretches
447
if found := module.find("./protocols/network_router"):
448
model_data["zigbee_mac_address"] = found.find("mac_address").text
449
+ # Also look for the Circle+/Stealth M+
450
+ if found := module.find("./protocols/network_coordinator"):
451
+ model_data["zigbee_mac_address"] = found.find("mac_address").text
452
453
return model_data
454
0 commit comments