mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Nuki: show actual device model in device registry (#89017)
* Bump pynuki to 1.6.1 (adds friendly device model names) * Nuki: use friendly model name for device registry * Update global dependencies
This commit is contained in:
parent
e5fc2d3f78
commit
1efc33d4c6
@ -215,7 +215,7 @@ class NukiEntity(CoordinatorEntity[NukiCoordinator], Generic[_NukiDeviceT]):
|
||||
"identifiers": {(DOMAIN, parse_id(self._nuki_device.nuki_id))},
|
||||
"name": self._nuki_device.name,
|
||||
"manufacturer": "Nuki Home Solutions GmbH",
|
||||
"model": self._nuki_device.device_type_str.capitalize(),
|
||||
"model": self._nuki_device.device_model_str.capitalize(),
|
||||
"sw_version": self._nuki_device.firmware_version,
|
||||
"via_device": (DOMAIN, self.coordinator.bridge_id),
|
||||
}
|
||||
|
@ -11,5 +11,5 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/nuki",
|
||||
"iot_class": "local_polling",
|
||||
"loggers": ["pynuki"],
|
||||
"requirements": ["pynuki==1.6.0"]
|
||||
"requirements": ["pynuki==1.6.1"]
|
||||
}
|
||||
|
@ -1816,7 +1816,7 @@ pynina==0.2.0
|
||||
pynobo==1.6.0
|
||||
|
||||
# homeassistant.components.nuki
|
||||
pynuki==1.6.0
|
||||
pynuki==1.6.1
|
||||
|
||||
# homeassistant.components.nut
|
||||
pynut2==2.1.2
|
||||
|
@ -1308,7 +1308,7 @@ pynina==0.2.0
|
||||
pynobo==1.6.0
|
||||
|
||||
# homeassistant.components.nuki
|
||||
pynuki==1.6.0
|
||||
pynuki==1.6.1
|
||||
|
||||
# homeassistant.components.nut
|
||||
pynut2==2.1.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user