Add support for ASIN Pool devices to ASEKO (#122773)

This commit is contained in:
Milan Meulemans 2024-07-29 22:12:34 +02:00 committed by GitHub
parent 02581bbf02
commit b5b01d97f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 4 deletions

View file

@ -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(

View file

@ -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"]
}

View file

@ -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

View file

@ -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