mirror of
https://github.com/home-assistant/core.git
synced 2025-07-03 19:37:10 +00:00

* Update eq3btsmart to 2.1.0 * Update import names * Update register callbacks * Updated data model * Update Thermostat set value methods * Update Thermostat init * Thermostat status and device_data are always given * Minor compatibility fixes --------- Co-authored-by: Lennard Beers <l.beers@outlook.de>
79 lines
2.3 KiB
Python
79 lines
2.3 KiB
Python
"""Platform for eq3 sensor entities."""
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
|
|
from eq3btsmart.models import Status
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
)
|
|
from homeassistant.components.sensor.const import SensorStateClass
|
|
from homeassistant.const import PERCENTAGE
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from . import Eq3ConfigEntry
|
|
from .const import ENTITY_KEY_AWAY_UNTIL, ENTITY_KEY_VALVE
|
|
from .entity import Eq3Entity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class Eq3SensorEntityDescription(SensorEntityDescription):
|
|
"""Entity description for eq3 sensor entities."""
|
|
|
|
value_func: Callable[[Status], int | datetime | None]
|
|
|
|
|
|
SENSOR_ENTITY_DESCRIPTIONS = [
|
|
Eq3SensorEntityDescription(
|
|
key=ENTITY_KEY_VALVE,
|
|
translation_key=ENTITY_KEY_VALVE,
|
|
value_func=lambda status: status.valve,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
Eq3SensorEntityDescription(
|
|
key=ENTITY_KEY_AWAY_UNTIL,
|
|
translation_key=ENTITY_KEY_AWAY_UNTIL,
|
|
value_func=lambda status: (status.away_until if status.away_until else None),
|
|
device_class=SensorDeviceClass.DATE,
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: Eq3ConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the entry."""
|
|
|
|
async_add_entities(
|
|
Eq3SensorEntity(entry, entity_description)
|
|
for entity_description in SENSOR_ENTITY_DESCRIPTIONS
|
|
)
|
|
|
|
|
|
class Eq3SensorEntity(Eq3Entity, SensorEntity):
|
|
"""Base class for eq3 sensor entities."""
|
|
|
|
entity_description: Eq3SensorEntityDescription
|
|
|
|
def __init__(
|
|
self, entry: Eq3ConfigEntry, entity_description: Eq3SensorEntityDescription
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
|
|
super().__init__(entry, entity_description.key)
|
|
self.entity_description = entity_description
|
|
|
|
@property
|
|
def native_value(self) -> int | datetime | None:
|
|
"""Return the value reported by the sensor."""
|
|
|
|
return self.entity_description.value_func(self._thermostat.status)
|