mirror of
https://github.com/home-assistant/core.git
synced 2026-06-01 05:04:21 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
85 lines
2.5 KiB
Python
85 lines
2.5 KiB
Python
"""Sensor platform for Kiosker."""
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
|
|
from kiosker import Status
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import PERCENTAGE
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
from homeassistant.helpers.typing import StateType
|
|
|
|
from . import KioskerConfigEntry
|
|
from .entity import KioskerEntity
|
|
|
|
# Coordinator-based platform; no per-entity polling concurrency needed
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class KioskerSensorEntityDescription(SensorEntityDescription):
|
|
"""Kiosker sensor description."""
|
|
|
|
value_fn: Callable[[Status], StateType | datetime | None]
|
|
|
|
|
|
SENSORS: tuple[KioskerSensorEntityDescription, ...] = (
|
|
KioskerSensorEntityDescription(
|
|
key="batteryLevel",
|
|
device_class=SensorDeviceClass.BATTERY,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
value_fn=lambda x: x.battery_level,
|
|
),
|
|
KioskerSensorEntityDescription(
|
|
key="lastInteraction",
|
|
translation_key="last_interaction",
|
|
device_class=SensorDeviceClass.TIMESTAMP,
|
|
value_fn=lambda x: x.last_interaction,
|
|
),
|
|
KioskerSensorEntityDescription(
|
|
key="lastMotion",
|
|
translation_key="last_motion",
|
|
device_class=SensorDeviceClass.TIMESTAMP,
|
|
value_fn=lambda x: x.last_motion,
|
|
),
|
|
KioskerSensorEntityDescription(
|
|
key="ambientLight",
|
|
translation_key="ambient_light",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
value_fn=lambda x: x.ambient_light,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: KioskerConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Kiosker sensors based on a config entry."""
|
|
coordinator = entry.runtime_data
|
|
|
|
async_add_entities(
|
|
KioskerSensor(coordinator, description) for description in SENSORS
|
|
)
|
|
|
|
|
|
class KioskerSensor(KioskerEntity, SensorEntity):
|
|
"""Representation of a Kiosker sensor."""
|
|
|
|
entity_description: KioskerSensorEntityDescription
|
|
|
|
@property
|
|
def native_value(self) -> StateType | datetime | None:
|
|
"""Return the native value of the sensor."""
|
|
return self.entity_description.value_fn(self.coordinator.data.status)
|