2023-09-10 23:24:57 +00:00
|
|
|
"""Platform to control a Renson ventilation unit."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from renson_endura_delta.field_enum import FILTER_PRESET_FIELD, DataType
|
|
|
|
from renson_endura_delta.renson import RensonVentilation
|
|
|
|
|
|
|
|
from homeassistant.components.number import (
|
|
|
|
NumberDeviceClass,
|
|
|
|
NumberEntity,
|
|
|
|
NumberEntityDescription,
|
|
|
|
)
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.const import EntityCategory, UnitOfTime
|
|
|
|
from homeassistant.core import HomeAssistant, callback
|
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
|
|
|
|
from .const import DOMAIN
|
2023-09-20 06:47:20 +00:00
|
|
|
from .coordinator import RensonCoordinator
|
2023-09-10 23:24:57 +00:00
|
|
|
from .entity import RensonEntity
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
RENSON_NUMBER_DESCRIPTION = NumberEntityDescription(
|
|
|
|
key="filter_change",
|
|
|
|
translation_key="filter_change",
|
|
|
|
icon="mdi:filter",
|
|
|
|
native_step=1,
|
|
|
|
native_min_value=0,
|
|
|
|
native_max_value=360,
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
|
|
|
has_entity_name=True,
|
|
|
|
device_class=NumberDeviceClass.DURATION,
|
|
|
|
native_unit_of_measurement=UnitOfTime.DAYS,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
config_entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
) -> None:
|
|
|
|
"""Set up the Renson number platform."""
|
|
|
|
|
|
|
|
api: RensonVentilation = hass.data[DOMAIN][config_entry.entry_id].api
|
|
|
|
coordinator: RensonCoordinator = hass.data[DOMAIN][
|
|
|
|
config_entry.entry_id
|
|
|
|
].coordinator
|
|
|
|
|
|
|
|
async_add_entities([RensonNumber(RENSON_NUMBER_DESCRIPTION, api, coordinator)])
|
|
|
|
|
|
|
|
|
|
|
|
class RensonNumber(RensonEntity, NumberEntity):
|
|
|
|
"""Representation of the Renson number platform."""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
description: NumberEntityDescription,
|
|
|
|
api: RensonVentilation,
|
|
|
|
coordinator: RensonCoordinator,
|
|
|
|
) -> None:
|
|
|
|
"""Initialize the Renson number."""
|
|
|
|
super().__init__(description.key, api, coordinator)
|
|
|
|
|
|
|
|
self.entity_description = description
|
|
|
|
|
|
|
|
@callback
|
|
|
|
def _handle_coordinator_update(self) -> None:
|
|
|
|
"""Handle updated data from the coordinator."""
|
|
|
|
self._attr_native_value = self.api.parse_value(
|
|
|
|
self.api.get_field_value(self.coordinator.data, FILTER_PRESET_FIELD.name),
|
|
|
|
DataType.NUMERIC,
|
|
|
|
)
|
|
|
|
|
|
|
|
super()._handle_coordinator_update()
|
|
|
|
|
|
|
|
async def async_set_native_value(self, value: float) -> None:
|
|
|
|
"""Update the current value."""
|
|
|
|
|
|
|
|
await self.hass.async_add_executor_job(self.api.set_filter_days, value)
|
|
|
|
|
|
|
|
await self.coordinator.async_request_refresh()
|