hOn/custom_components/hon/number.py

277 lines
9.3 KiB
Python
Raw Normal View History

2023-02-19 02:58:21 +01:00
from __future__ import annotations
2023-05-28 00:30:08 +02:00
from dataclasses import dataclass
2023-02-19 02:58:21 +01:00
from homeassistant.components.number import (
NumberEntity,
NumberEntityDescription,
)
from homeassistant.config_entries import ConfigEntry
2023-04-07 13:52:55 +02:00
from homeassistant.const import UnitOfTime, UnitOfTemperature
2023-02-19 02:58:21 +01:00
from homeassistant.core import callback
2023-06-08 20:01:55 +02:00
from homeassistant.helpers.entity import EntityCategory
2023-05-10 18:13:05 +02:00
from pyhon.parameter.range import HonParameterRange
2023-03-03 18:23:30 +01:00
from .const import DOMAIN
2023-05-25 01:30:33 +02:00
from .hon import HonEntity, unique_entities
2023-02-19 02:58:21 +01:00
2023-05-28 00:30:08 +02:00
@dataclass
class HonConfigNumberEntityDescription(NumberEntityDescription):
entity_category: EntityCategory = EntityCategory.CONFIG
@dataclass
class HonNumberEntityDescription(NumberEntityDescription):
pass
2023-02-19 02:58:21 +01:00
NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
"WM": (
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-03-03 18:23:30 +01:00
key="startProgram.delayTime",
name="Delay Time",
2023-03-08 23:00:55 +01:00
icon="mdi:timer-plus",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="delay_time",
2023-02-19 02:58:21 +01:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-03-03 18:23:30 +01:00
key="startProgram.rinseIterations",
name="Rinse Iterations",
2023-03-08 23:00:55 +01:00
icon="mdi:rotate-right",
2023-04-23 02:01:14 +02:00
translation_key="rinse_iterations",
2023-02-19 02:58:21 +01:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-03-03 18:23:30 +01:00
key="startProgram.mainWashTime",
name="Main Wash Time",
2023-03-08 23:00:55 +01:00
icon="mdi:clock-start",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="wash_time",
2023-02-19 02:58:21 +01:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
key="startProgram.steamLevel",
name="Steam Level",
icon="mdi:weather-dust",
translation_key="steam_level",
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
key="startProgram.waterHard",
name="Water hard",
icon="mdi:water",
translation_key="water_hard",
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
key="startProgram.lang",
name="lang",
),
2023-02-19 02:58:21 +01:00
),
2023-03-21 13:03:39 +01:00
"TD": (
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-03-21 13:03:39 +01:00
key="startProgram.delayTime",
name="Delay time",
icon="mdi:timer-plus",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="delay_time",
2023-03-21 13:03:39 +01:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-03-21 13:03:39 +01:00
key="startProgram.tempLevel",
name="Temperature level",
icon="mdi:thermometer",
2023-04-10 19:51:16 +02:00
translation_key="tumbledryertemplevel",
2023-03-21 13:03:39 +01:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
key="startProgram.dryTime",
name="Dry Time",
translation_key="dry_time",
),
2023-03-21 13:03:39 +01:00
),
2023-04-07 13:52:55 +02:00
"OV": (
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-07 13:52:55 +02:00
key="startProgram.delayTime",
name="Delay time",
icon="mdi:timer-plus",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="delay_time",
2023-04-07 13:52:55 +02:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-07 13:52:55 +02:00
key="startProgram.tempSel",
name="Target Temperature",
icon="mdi:thermometer",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
2023-04-23 02:01:14 +02:00
translation_key="target_temperature",
2023-04-07 13:52:55 +02:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-07 13:52:55 +02:00
key="startProgram.prTime",
name="Program Duration",
icon="mdi:timelapse",
2023-04-10 19:51:16 +02:00
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="program_duration",
2023-04-07 13:52:55 +02:00
),
2023-04-08 04:44:47 +02:00
),
2023-04-16 13:55:08 +02:00
"IH": (
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-15 04:27:40 +02:00
key="startProgram.temp",
name="Temperature",
icon="mdi:thermometer",
2023-04-23 02:01:14 +02:00
translation_key="temperature",
2023-04-15 04:27:40 +02:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-15 04:27:40 +02:00
key="startProgram.powerManagement",
name="Power Management",
icon="mdi:timelapse",
2023-04-23 02:01:14 +02:00
translation_key="power_management",
2023-04-15 04:27:40 +02:00
),
),
2023-04-16 21:46:17 +02:00
"DW": (
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-16 21:46:17 +02:00
key="startProgram.delayTime",
name="Delay time",
icon="mdi:timer-plus",
native_unit_of_measurement=UnitOfTime.MINUTES,
2023-04-23 02:01:14 +02:00
translation_key="delay_time",
2023-04-16 21:46:17 +02:00
),
2023-05-28 00:30:08 +02:00
HonConfigNumberEntityDescription(
2023-04-16 21:46:17 +02:00
key="startProgram.waterHard",
name="Water hard",
icon="mdi:water",
2023-04-23 02:01:14 +02:00
translation_key="water_hard",
2023-04-16 21:46:17 +02:00
),
),
2023-04-26 23:57:44 +02:00
"AC": (
2023-05-28 00:30:08 +02:00
HonNumberEntityDescription(
2023-05-08 02:05:04 +02:00
key="settings.tempSel",
2023-04-26 23:57:44 +02:00
name="Target Temperature",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="target_temperature",
),
),
2023-05-15 00:38:41 +02:00
"REF": (
2023-05-28 00:30:08 +02:00
HonNumberEntityDescription(
2023-05-15 00:38:41 +02:00
key="settings.tempSelZ1",
name="Fridge Temperature",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="fridge_temp_sel",
),
2023-05-28 00:30:08 +02:00
HonNumberEntityDescription(
2023-05-15 00:38:41 +02:00
key="settings.tempSelZ2",
name="Freezer Temperature",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
translation_key="freezer_temp_sel",
),
),
"HO": (
HonNumberEntityDescription(
key="startProgram.lightStatus",
name="Light status",
icon="mdi:lightbulb",
2023-06-21 00:59:00 +02:00
),
),
"AP": (
HonNumberEntityDescription(
key="settings.aromaTimeOn",
name="Aroma Time On",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTime.SECONDS,
),
HonNumberEntityDescription(
key="settings.aromaTimeOff",
name="Aroma Time Off",
icon="mdi:thermometer",
native_unit_of_measurement=UnitOfTime.SECONDS,
),
HonNumberEntityDescription(
key="settings.lightStatus",
name="Light status",
icon="mdi:lightbulb",
),
HonNumberEntityDescription(
key="settings.pollenLevel",
name="Pollen Level",
),
),
2023-02-19 02:58:21 +01:00
}
2023-05-07 16:39:45 +02:00
NUMBERS["WD"] = unique_entities(NUMBERS["WM"], NUMBERS["TD"])
2023-02-19 02:58:21 +01:00
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None:
2023-05-25 01:30:33 +02:00
entities = []
for device in hass.data[DOMAIN][entry.unique_id].appliances:
for description in NUMBERS.get(device.appliance_type, []):
if description.key not in device.available_settings:
continue
2023-05-28 00:30:08 +02:00
if isinstance(description, HonNumberEntityDescription):
entity = HonNumberEntity(hass, entry, device, description)
elif isinstance(description, HonConfigNumberEntityDescription):
entity = HonConfigNumberEntity(hass, entry, device, description)
else:
continue
2023-05-25 01:30:33 +02:00
await entity.coordinator.async_config_entry_first_refresh()
entities.append(entity)
async_add_entities(entities)
2023-02-19 02:58:21 +01:00
class HonNumberEntity(HonEntity, NumberEntity):
2023-05-28 00:30:08 +02:00
entity_description: HonNumberEntityDescription
2023-05-25 01:30:33 +02:00
def __init__(self, hass, entry, device, description) -> None:
2023-05-28 00:30:08 +02:00
super().__init__(hass, entry, device, description)
2023-02-19 02:58:21 +01:00
self._data = device.settings[description.key]
if isinstance(self._data, HonParameterRange):
self._attr_native_max_value = self._data.max
self._attr_native_min_value = self._data.min
self._attr_native_step = self._data.step
@property
def native_value(self) -> float | None:
2023-06-21 00:59:00 +02:00
return self._device.get(self.entity_description.key.split(".")[-1])
2023-02-19 02:58:21 +01:00
async def async_set_native_value(self, value: float) -> None:
setting = self._device.settings[self.entity_description.key]
2023-05-28 00:30:08 +02:00
if isinstance(setting, HonParameterRange):
setting.value = value
2023-05-28 00:30:08 +02:00
command = self.entity_description.key.split(".")[0]
await self._device.commands[command].send()
2023-06-21 19:52:32 +02:00
if command != "settings":
self._device.sync_command(command, "settings")
2023-04-23 20:04:19 +02:00
await self.coordinator.async_refresh()
2023-02-19 02:58:21 +01:00
@callback
2023-06-08 20:01:55 +02:00
def _handle_coordinator_update(self, update=True) -> None:
2023-03-08 23:00:55 +01:00
setting = self._device.settings[self.entity_description.key]
if isinstance(setting, HonParameterRange):
self._attr_native_max_value = setting.max
self._attr_native_min_value = setting.min
self._attr_native_step = setting.step
2023-06-21 00:59:00 +02:00
self._attr_native_value = self.native_value
2023-06-08 20:01:55 +02:00
if update:
self.async_write_ha_state()
@property
def available(self) -> bool:
"""Return True if entity is available."""
2023-05-28 00:30:08 +02:00
return (
super().available
2023-06-13 00:14:51 +02:00
and int(self._device.get("remoteCtrValid", 1)) == 1
2023-05-28 00:30:08 +02:00
and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED"
)
class HonConfigNumberEntity(HonNumberEntity):
entity_description: HonConfigNumberEntityDescription
async def async_set_native_value(self, value: str) -> None:
setting = self._device.settings[self.entity_description.key]
if isinstance(setting, HonParameterRange):
setting.value = value
await self.coordinator.async_refresh()
@property
def available(self) -> bool:
"""Return True if entity is available."""
return super(NumberEntity, self).available