mirror of https://github.com/home-assistant/core
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
"""Creates HomeWizard Number entities."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.number import NumberEntity
|
|
from homeassistant.const import PERCENTAGE, EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.util.color import brightness_to_value, value_to_brightness
|
|
|
|
from . import HomeWizardConfigEntry
|
|
from .coordinator import HWEnergyDeviceUpdateCoordinator
|
|
from .entity import HomeWizardEntity
|
|
from .helpers import homewizard_exception_handler
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: HomeWizardConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up numbers for device."""
|
|
if entry.runtime_data.supports_state():
|
|
async_add_entities([HWEnergyNumberEntity(entry.runtime_data)])
|
|
|
|
|
|
class HWEnergyNumberEntity(HomeWizardEntity, NumberEntity):
|
|
"""Representation of status light number."""
|
|
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
_attr_translation_key = "status_light_brightness"
|
|
_attr_native_unit_of_measurement = PERCENTAGE
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: HWEnergyDeviceUpdateCoordinator,
|
|
) -> None:
|
|
"""Initialize the control number."""
|
|
super().__init__(coordinator)
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.unique_id}_status_light_brightness"
|
|
)
|
|
|
|
@homewizard_exception_handler
|
|
async def async_set_native_value(self, value: float) -> None:
|
|
"""Set a new value."""
|
|
await self.coordinator.api.state_set(
|
|
brightness=value_to_brightness((0, 100), value)
|
|
)
|
|
await self.coordinator.async_refresh()
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if entity is available."""
|
|
return super().available and self.coordinator.data.state is not None
|
|
|
|
@property
|
|
def native_value(self) -> float | None:
|
|
"""Return the current value."""
|
|
if (
|
|
not self.coordinator.data.state
|
|
or (brightness := self.coordinator.data.state.brightness) is None
|
|
):
|
|
return None
|
|
return brightness_to_value((0, 100), brightness)
|