core/homeassistant/components/lacrosse_view/sensor.py

170 lines
5.2 KiB
Python

"""Sensor component for LaCrosse View."""
from __future__ import annotations
from collections.abc import Callable
from dataclasses import dataclass
from lacrosse_view import Sensor
from homeassistant.components.sensor import (
SensorDeviceClass,
SensorEntity,
SensorEntityDescription,
SensorStateClass,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import (
PERCENTAGE,
PRECIPITATION_INCHES,
SPEED_KILOMETERS_PER_HOUR,
TEMP_CELSIUS,
TEMP_FAHRENHEIT,
)
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.update_coordinator import (
CoordinatorEntity,
DataUpdateCoordinator,
)
from .const import DOMAIN, LOGGER
@dataclass
class LaCrosseSensorEntityDescriptionMixin:
"""Mixin for required keys."""
value_fn: Callable[[Sensor, str], float]
@dataclass
class LaCrosseSensorEntityDescription(
SensorEntityDescription, LaCrosseSensorEntityDescriptionMixin
):
"""Description for LaCrosse View sensor."""
def get_value(sensor: Sensor, field: str) -> float:
"""Get the value of a sensor field."""
return float(sensor.data[field]["values"][-1]["s"])
PARALLEL_UPDATES = 0
SENSOR_DESCRIPTIONS = {
"Temperature": LaCrosseSensorEntityDescription(
key="Temperature",
device_class=SensorDeviceClass.TEMPERATURE,
name="Temperature",
state_class=SensorStateClass.MEASUREMENT,
value_fn=get_value,
native_unit_of_measurement=TEMP_CELSIUS,
),
"Humidity": LaCrosseSensorEntityDescription(
key="Humidity",
device_class=SensorDeviceClass.HUMIDITY,
name="Humidity",
state_class=SensorStateClass.MEASUREMENT,
value_fn=get_value,
native_unit_of_measurement=PERCENTAGE,
),
"HeatIndex": LaCrosseSensorEntityDescription(
key="HeatIndex",
device_class=SensorDeviceClass.TEMPERATURE,
name="Heat index",
state_class=SensorStateClass.MEASUREMENT,
value_fn=get_value,
native_unit_of_measurement=TEMP_FAHRENHEIT,
),
"WindSpeed": LaCrosseSensorEntityDescription(
key="WindSpeed",
name="Wind speed",
state_class=SensorStateClass.MEASUREMENT,
value_fn=get_value,
native_unit_of_measurement=SPEED_KILOMETERS_PER_HOUR,
device_class=SensorDeviceClass.SPEED,
),
"Rain": LaCrosseSensorEntityDescription(
key="Rain",
name="Rain",
state_class=SensorStateClass.MEASUREMENT,
value_fn=get_value,
native_unit_of_measurement=PRECIPITATION_INCHES,
),
}
async def async_setup_entry(
hass: HomeAssistant,
entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up LaCrosse View from a config entry."""
coordinator: DataUpdateCoordinator[list[Sensor]] = hass.data[DOMAIN][
entry.entry_id
]["coordinator"]
sensors: list[Sensor] = coordinator.data
sensor_list = []
for i, sensor in enumerate(sensors):
for field in sensor.sensor_field_names:
description = SENSOR_DESCRIPTIONS.get(field)
if description is None:
message = (
f"Unsupported sensor field: {field}\nPlease create an issue on "
"GitHub. https://github.com/home-assistant/core/issues/new?assignees=&la"
"bels=&template=bug_report.yml&integration_name=LaCrosse%20View&integrat"
"ion_link=https://www.home-assistant.io/integrations/lacrosse_view/&addi"
f"tional_information=Field:%20{field}%0ASensor%20Model:%20{sensor.model}&"
f"title=LaCrosse%20View%20Unsupported%20sensor%20field:%20{field}"
)
LOGGER.warning(message)
continue
sensor_list.append(
LaCrosseViewSensor(
coordinator=coordinator,
description=description,
sensor=sensor,
index=i,
)
)
async_add_entities(sensor_list)
class LaCrosseViewSensor(
CoordinatorEntity[DataUpdateCoordinator[list[Sensor]]], SensorEntity
):
"""LaCrosse View sensor."""
entity_description: LaCrosseSensorEntityDescription
_attr_has_entity_name: bool = True
def __init__(
self,
description: LaCrosseSensorEntityDescription,
coordinator: DataUpdateCoordinator[list[Sensor]],
sensor: Sensor,
index: int,
) -> None:
"""Initialize."""
super().__init__(coordinator)
self.entity_description = description
self._attr_unique_id = f"{sensor.sensor_id}-{description.key}"
self._attr_device_info = {
"identifiers": {(DOMAIN, sensor.sensor_id)},
"name": sensor.name,
"manufacturer": "LaCrosse Technology",
"model": sensor.model,
"via_device": (DOMAIN, sensor.location.id),
}
self.index = index
@property
def native_value(self) -> float | str:
"""Return the sensor value."""
return self.entity_description.value_fn(
self.coordinator.data[self.index], self.entity_description.key
)