mirror of https://github.com/home-assistant/core
234 lines
7.6 KiB
Python
234 lines
7.6 KiB
Python
"""Number for Shelly."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING, Any, Final, cast
|
|
|
|
from aioshelly.block_device import Block
|
|
from aioshelly.const import RPC_GENERATIONS
|
|
from aioshelly.exceptions import DeviceConnectionError, InvalidAuthError
|
|
|
|
from homeassistant.components.number import (
|
|
DOMAIN as NUMBER_PLATFORM,
|
|
NumberEntity,
|
|
NumberEntityDescription,
|
|
NumberExtraStoredData,
|
|
NumberMode,
|
|
RestoreNumber,
|
|
)
|
|
from homeassistant.const import PERCENTAGE, EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.entity_registry import RegistryEntry
|
|
|
|
from .const import CONF_SLEEP_PERIOD, LOGGER, VIRTUAL_NUMBER_MODE_MAP
|
|
from .coordinator import ShellyBlockCoordinator, ShellyConfigEntry, ShellyRpcCoordinator
|
|
from .entity import (
|
|
BlockEntityDescription,
|
|
RpcEntityDescription,
|
|
ShellyRpcAttributeEntity,
|
|
ShellySleepingBlockAttributeEntity,
|
|
async_setup_entry_attribute_entities,
|
|
async_setup_entry_rpc,
|
|
)
|
|
from .utils import (
|
|
async_remove_orphaned_entities,
|
|
get_device_entry_gen,
|
|
get_virtual_component_ids,
|
|
)
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class BlockNumberDescription(BlockEntityDescription, NumberEntityDescription):
|
|
"""Class to describe a BLOCK sensor."""
|
|
|
|
rest_path: str = ""
|
|
rest_arg: str = ""
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class RpcNumberDescription(RpcEntityDescription, NumberEntityDescription):
|
|
"""Class to describe a RPC number entity."""
|
|
|
|
max_fn: Callable[[dict], float] | None = None
|
|
min_fn: Callable[[dict], float] | None = None
|
|
step_fn: Callable[[dict], float] | None = None
|
|
mode_fn: Callable[[dict], NumberMode] | None = None
|
|
|
|
|
|
NUMBERS: dict[tuple[str, str], BlockNumberDescription] = {
|
|
("device", "valvePos"): BlockNumberDescription(
|
|
key="device|valvepos",
|
|
translation_key="valve_position",
|
|
name="Valve position",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
available=lambda block: cast(int, block.valveError) != 1,
|
|
entity_category=EntityCategory.CONFIG,
|
|
native_min_value=0,
|
|
native_max_value=100,
|
|
native_step=1,
|
|
mode=NumberMode.SLIDER,
|
|
rest_path="thermostat/0",
|
|
rest_arg="pos",
|
|
),
|
|
}
|
|
|
|
|
|
RPC_NUMBERS: Final = {
|
|
"number": RpcNumberDescription(
|
|
key="number",
|
|
sub_key="value",
|
|
has_entity_name=True,
|
|
max_fn=lambda config: config["max"],
|
|
min_fn=lambda config: config["min"],
|
|
mode_fn=lambda config: VIRTUAL_NUMBER_MODE_MAP.get(
|
|
config["meta"]["ui"]["view"], NumberMode.BOX
|
|
),
|
|
step_fn=lambda config: config["meta"]["ui"]["step"],
|
|
# If the unit is not set, the device sends an empty string
|
|
unit=lambda config: config["meta"]["ui"]["unit"]
|
|
if config["meta"]["ui"]["unit"]
|
|
else None,
|
|
),
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ShellyConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up numbers for device."""
|
|
if get_device_entry_gen(config_entry) in RPC_GENERATIONS:
|
|
coordinator = config_entry.runtime_data.rpc
|
|
assert coordinator
|
|
|
|
async_setup_entry_rpc(
|
|
hass, config_entry, async_add_entities, RPC_NUMBERS, RpcNumber
|
|
)
|
|
|
|
# the user can remove virtual components from the device configuration, so
|
|
# we need to remove orphaned entities
|
|
virtual_number_ids = get_virtual_component_ids(
|
|
coordinator.device.config, NUMBER_PLATFORM
|
|
)
|
|
async_remove_orphaned_entities(
|
|
hass,
|
|
config_entry.entry_id,
|
|
coordinator.mac,
|
|
NUMBER_PLATFORM,
|
|
virtual_number_ids,
|
|
"number",
|
|
)
|
|
return
|
|
|
|
if config_entry.data[CONF_SLEEP_PERIOD]:
|
|
async_setup_entry_attribute_entities(
|
|
hass,
|
|
config_entry,
|
|
async_add_entities,
|
|
NUMBERS,
|
|
BlockSleepingNumber,
|
|
)
|
|
|
|
|
|
class BlockSleepingNumber(ShellySleepingBlockAttributeEntity, RestoreNumber):
|
|
"""Represent a block sleeping number."""
|
|
|
|
entity_description: BlockNumberDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ShellyBlockCoordinator,
|
|
block: Block | None,
|
|
attribute: str,
|
|
description: BlockNumberDescription,
|
|
entry: RegistryEntry | None = None,
|
|
) -> None:
|
|
"""Initialize the sleeping sensor."""
|
|
self.restored_data: NumberExtraStoredData | None = None
|
|
super().__init__(coordinator, block, attribute, description, entry)
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Handle entity which will be added."""
|
|
await super().async_added_to_hass()
|
|
self.restored_data = await self.async_get_last_number_data()
|
|
|
|
@property
|
|
def native_value(self) -> float | None:
|
|
"""Return value of number."""
|
|
if self.block is not None:
|
|
return cast(float, self.attribute_value)
|
|
|
|
if self.restored_data is None:
|
|
return None
|
|
|
|
return cast(float, self.restored_data.native_value)
|
|
|
|
async def async_set_native_value(self, value: float) -> None:
|
|
"""Set value."""
|
|
# Example for Shelly Valve: http://192.168.188.187/thermostat/0?pos=13.0
|
|
await self._set_state_full_path(
|
|
self.entity_description.rest_path,
|
|
{self.entity_description.rest_arg: value},
|
|
)
|
|
self.async_write_ha_state()
|
|
|
|
async def _set_state_full_path(self, path: str, params: Any) -> Any:
|
|
"""Set block state (HTTP request)."""
|
|
LOGGER.debug("Setting state for entity %s, state: %s", self.name, params)
|
|
try:
|
|
return await self.coordinator.device.http_request("get", path, params)
|
|
except DeviceConnectionError as err:
|
|
self.coordinator.last_update_success = False
|
|
raise HomeAssistantError(
|
|
f"Setting state for entity {self.name} failed, state: {params}, error:"
|
|
f" {err!r}"
|
|
) from err
|
|
except InvalidAuthError:
|
|
await self.coordinator.async_shutdown_device_and_start_reauth()
|
|
|
|
|
|
class RpcNumber(ShellyRpcAttributeEntity, NumberEntity):
|
|
"""Represent a RPC number entity."""
|
|
|
|
entity_description: RpcNumberDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: ShellyRpcCoordinator,
|
|
key: str,
|
|
attribute: str,
|
|
description: RpcNumberDescription,
|
|
) -> None:
|
|
"""Initialize sensor."""
|
|
super().__init__(coordinator, key, attribute, description)
|
|
|
|
if description.max_fn is not None:
|
|
self._attr_native_max_value = description.max_fn(
|
|
coordinator.device.config[key]
|
|
)
|
|
if description.min_fn is not None:
|
|
self._attr_native_min_value = description.min_fn(
|
|
coordinator.device.config[key]
|
|
)
|
|
if description.step_fn is not None:
|
|
self._attr_native_step = description.step_fn(coordinator.device.config[key])
|
|
if description.mode_fn is not None:
|
|
self._attr_mode = description.mode_fn(coordinator.device.config[key])
|
|
|
|
@property
|
|
def native_value(self) -> float | None:
|
|
"""Return value of number."""
|
|
if TYPE_CHECKING:
|
|
assert isinstance(self.attribute_value, float | None)
|
|
|
|
return self.attribute_value
|
|
|
|
async def async_set_native_value(self, value: float) -> None:
|
|
"""Change the value."""
|
|
await self.call_rpc("Number.Set", {"id": self._id, "value": value})
|