mirror of https://github.com/home-assistant/core
99 lines
3.2 KiB
Python
99 lines
3.2 KiB
Python
"""Support for LaMetric numbers."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Awaitable, Callable
|
|
from dataclasses import dataclass
|
|
from typing import Any
|
|
|
|
from demetriek import Device, LaMetricDevice
|
|
|
|
from homeassistant.components.number import NumberEntity, NumberEntityDescription
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import PERCENTAGE, EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import LaMetricDataUpdateCoordinator
|
|
from .entity import LaMetricEntity
|
|
from .helpers import lametric_exception_handler
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class LaMetricNumberEntityDescription(NumberEntityDescription):
|
|
"""Class describing LaMetric number entities."""
|
|
|
|
value_fn: Callable[[Device], int | None]
|
|
set_value_fn: Callable[[LaMetricDevice, float], Awaitable[Any]]
|
|
|
|
|
|
NUMBERS = [
|
|
LaMetricNumberEntityDescription(
|
|
key="brightness",
|
|
translation_key="brightness",
|
|
name="Brightness",
|
|
entity_category=EntityCategory.CONFIG,
|
|
native_step=1,
|
|
native_min_value=0,
|
|
native_max_value=100,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
value_fn=lambda device: device.display.brightness,
|
|
set_value_fn=lambda device, bri: device.display(brightness=int(bri)),
|
|
),
|
|
LaMetricNumberEntityDescription(
|
|
key="volume",
|
|
translation_key="volume",
|
|
name="Volume",
|
|
entity_category=EntityCategory.CONFIG,
|
|
native_step=1,
|
|
native_min_value=0,
|
|
native_max_value=100,
|
|
value_fn=lambda device: device.audio.volume,
|
|
set_value_fn=lambda api, volume: api.audio(volume=int(volume)),
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up LaMetric number based on a config entry."""
|
|
coordinator: LaMetricDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
async_add_entities(
|
|
LaMetricNumberEntity(
|
|
coordinator=coordinator,
|
|
description=description,
|
|
)
|
|
for description in NUMBERS
|
|
)
|
|
|
|
|
|
class LaMetricNumberEntity(LaMetricEntity, NumberEntity):
|
|
"""Representation of a LaMetric number."""
|
|
|
|
entity_description: LaMetricNumberEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: LaMetricDataUpdateCoordinator,
|
|
description: LaMetricNumberEntityDescription,
|
|
) -> None:
|
|
"""Initiate LaMetric Number."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = description
|
|
self._attr_unique_id = f"{coordinator.data.serial_number}-{description.key}"
|
|
|
|
@property
|
|
def native_value(self) -> int | None:
|
|
"""Return the number value."""
|
|
return self.entity_description.value_fn(self.coordinator.data)
|
|
|
|
@lametric_exception_handler
|
|
async def async_set_native_value(self, value: float) -> None:
|
|
"""Change to new number value."""
|
|
await self.entity_description.set_value_fn(self.coordinator.lametric, value)
|
|
await self.coordinator.async_request_refresh()
|