mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Add support for ASIN Pool devices to ASEKO (#122773)
This commit is contained in:
parent
02581bbf02
commit
b5b01d97f1
@ -19,7 +19,10 @@ class AsekoEntity(CoordinatorEntity[AsekoDataUpdateCoordinator]):
|
||||
super().__init__(coordinator)
|
||||
self._unit = unit
|
||||
|
||||
self._device_model = f"ASIN AQUA {self._unit.type}"
|
||||
if self._unit.type == "Remote":
|
||||
self._device_model = "ASIN Pool"
|
||||
else:
|
||||
self._device_model = f"ASIN AQUA {self._unit.type}"
|
||||
self._device_name = self._unit.name if self._unit.name else self._device_model
|
||||
|
||||
self._attr_device_info = DeviceInfo(
|
||||
|
@ -6,5 +6,5 @@
|
||||
"documentation": "https://www.home-assistant.io/integrations/aseko_pool_live",
|
||||
"iot_class": "cloud_polling",
|
||||
"loggers": ["aioaseko"],
|
||||
"requirements": ["aioaseko==0.1.1"]
|
||||
"requirements": ["aioaseko==0.2.0"]
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ aioapcaccess==0.4.2
|
||||
aioaquacell==0.2.0
|
||||
|
||||
# homeassistant.components.aseko_pool_live
|
||||
aioaseko==0.1.1
|
||||
aioaseko==0.2.0
|
||||
|
||||
# homeassistant.components.asuswrt
|
||||
aioasuswrt==1.4.0
|
||||
|
@ -180,7 +180,7 @@ aioapcaccess==0.4.2
|
||||
aioaquacell==0.2.0
|
||||
|
||||
# homeassistant.components.aseko_pool_live
|
||||
aioaseko==0.1.1
|
||||
aioaseko==0.2.0
|
||||
|
||||
# homeassistant.components.asuswrt
|
||||
aioasuswrt==1.4.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user