We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56853e7 commit dc915daCopy full SHA for dc915da
custom_components/plugwise_usb/__init__.py
@@ -64,12 +64,12 @@ def _async_migrate_entity_entry(
64
device_registry.async_get_or_create(
65
config_entry_id=config_entry.entry_id,
66
connections={(dr.CONNECTION_ZIGBEE, api_stick.mac_stick)},
67
- hw_version=api_stick.hardware_stick,
+ hw_version=api_stick.hardware,
68
identifiers={(DOMAIN, api_stick.mac_stick)},
69
manufacturer="Plugwise",
70
model="Stick",
71
name=api_stick.name,
72
- sw_version=api_stick.firmware_stick,
+ sw_version=api_stick.firmware,
73
)
74
75
config_entry.runtime_data[NODES]: NodeConfigEntry = {}
0 commit comments