hOn/custom_components/hon/switch.py

121 lines
4.3 KiB
Python
Raw Normal View History

2023-03-05 00:54:57 +01:00
from dataclasses import dataclass
from typing import Any
from homeassistant.components.switch import SwitchEntityDescription, SwitchEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import EntityCategory
2023-03-05 21:16:09 +01:00
from pyhon import HonConnection
from pyhon.device import HonDevice
2023-03-05 00:54:57 +01:00
from .const import DOMAIN
from .hon import HonCoordinator, HonEntity
@dataclass
class HonSwitchEntityDescriptionMixin:
turn_on_key: str = ""
turn_off_key: str = ""
@dataclass
class HonSwitchEntityDescription(HonSwitchEntityDescriptionMixin,
SwitchEntityDescription
):
pass
SWITCHES: dict[str, tuple[HonSwitchEntityDescription, ...]] = {
"WM": (
HonSwitchEntityDescription(
2023-03-08 23:00:55 +01:00
key="active",
name="Washing Machine",
icon="mdi:washing-machine",
2023-03-05 00:54:57 +01:00
turn_on_key="startProgram",
turn_off_key="stopProgram",
),
2023-03-08 23:00:55 +01:00
HonSwitchEntityDescription(
key="pause",
name="Pause Washing Machine",
icon="mdi:pause",
turn_on_key="pauseProgram",
turn_off_key="resumeProgram",
),
2023-03-05 00:54:57 +01:00
HonSwitchEntityDescription(
key="startProgram.delayStatus",
name="Delay Status",
2023-03-08 23:00:55 +01:00
icon="mdi:timer-check",
2023-03-05 00:54:57 +01:00
entity_category=EntityCategory.CONFIG
),
HonSwitchEntityDescription(
key="startProgram.haier_SoakPrewashSelection",
name="Soak Prewash Selection",
2023-03-08 23:00:55 +01:00
icon="mdi:tshirt-crew",
2023-03-05 00:54:57 +01:00
entity_category=EntityCategory.CONFIG
),
),
}
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None:
hon: HonConnection = hass.data[DOMAIN][entry.unique_id]
coordinators = hass.data[DOMAIN]["coordinators"]
appliances = []
for device in hon.devices:
if device.mac_address in coordinators:
coordinator = hass.data[DOMAIN]["coordinators"][device.mac_address]
else:
coordinator = HonCoordinator(hass, device)
hass.data[DOMAIN]["coordinators"][device.mac_address] = coordinator
await coordinator.async_config_entry_first_refresh()
2023-03-08 23:00:55 +01:00
if descriptions := SWITCHES.get(device.appliance_type):
2023-03-05 00:54:57 +01:00
for description in descriptions:
2023-03-08 23:00:55 +01:00
if device.get(description.key) is not None or device.commands.get(description.key) is not None:
2023-03-05 19:19:52 +01:00
appliances.extend([
HonSwitchEntity(hass, coordinator, entry, device, description)]
)
2023-03-05 00:54:57 +01:00
async_add_entities(appliances)
class HonSwitchEntity(HonEntity, SwitchEntity):
entity_description: HonSwitchEntityDescription
def __init__(self, hass, coordinator, entry, device: HonDevice, description: HonSwitchEntityDescription) -> None:
super().__init__(hass, entry, coordinator, device)
self._coordinator = coordinator
self._device = device
self.entity_description = description
self._attr_unique_id = f"{super().unique_id}{description.key}"
def available(self) -> bool:
if self.entity_category == EntityCategory.CONFIG:
2023-03-08 23:00:55 +01:00
return self._device.settings[self.entity_description.key].typology != "fixed"
2023-03-05 00:54:57 +01:00
return True
@property
def is_on(self) -> bool | None:
"""Return True if entity is on."""
if self.entity_category == EntityCategory.CONFIG:
setting = self._device.settings[self.entity_description.key]
return setting.value == "1" or hasattr(setting, "min") and setting.value != setting.min
2023-03-08 23:00:55 +01:00
return self._device.get(self.entity_description.key, False)
2023-03-05 00:54:57 +01:00
async def async_turn_on(self, **kwargs: Any) -> None:
if self.entity_category == EntityCategory.CONFIG:
setting = self._device.settings[self.entity_description.key]
setting.value = setting.max
self.async_write_ha_state()
else:
await self._device.commands[self.entity_description.turn_on_key].send()
async def async_turn_off(self, **kwargs: Any) -> None:
if self.entity_category == EntityCategory.CONFIG:
setting = self._device.settings[self.entity_description.key]
setting.value = setting.min
self.async_write_ha_state()
else:
await self._device.commands[self.entity_description.turn_off_key].send()