115 lines
3.7 KiB
Python
115 lines
3.7 KiB
Python
"""Support for the Nettigo Air Monitor service."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
from typing import Any
|
|
|
|
from homeassistant.components.sensor import SensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import ATTR_DEVICE_CLASS, ATTR_ICON
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import DeviceInfo
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
from homeassistant.util.dt import utcnow
|
|
|
|
from . import NAMDataUpdateCoordinator
|
|
from .const import ATTR_ENABLED, ATTR_LABEL, ATTR_UNIT, ATTR_UPTIME, DOMAIN, SENSORS
|
|
|
|
PARALLEL_UPDATES = 1
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Add a Nettigo Air Monitor entities from a config_entry."""
|
|
coordinator: NAMDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
sensors: list[NAMSensor | NAMSensorUptime] = []
|
|
for sensor in SENSORS:
|
|
if sensor in coordinator.data:
|
|
if sensor == ATTR_UPTIME:
|
|
sensors.append(NAMSensorUptime(coordinator, sensor))
|
|
else:
|
|
sensors.append(NAMSensor(coordinator, sensor))
|
|
|
|
async_add_entities(sensors, False)
|
|
|
|
|
|
class NAMSensor(CoordinatorEntity, SensorEntity):
|
|
"""Define an Nettigo Air Monitor sensor."""
|
|
|
|
coordinator: NAMDataUpdateCoordinator
|
|
|
|
def __init__(self, coordinator: NAMDataUpdateCoordinator, sensor_type: str) -> None:
|
|
"""Initialize."""
|
|
super().__init__(coordinator)
|
|
self.sensor_type = sensor_type
|
|
self._description = SENSORS[self.sensor_type]
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name."""
|
|
return self._description[ATTR_LABEL]
|
|
|
|
@property
|
|
def state(self) -> Any:
|
|
"""Return the state."""
|
|
return getattr(self.coordinator.data, self.sensor_type)
|
|
|
|
@property
|
|
def unit_of_measurement(self) -> str | None:
|
|
"""Return the unit the value is expressed in."""
|
|
return self._description[ATTR_UNIT]
|
|
|
|
@property
|
|
def device_class(self) -> str | None:
|
|
"""Return the class of this sensor."""
|
|
return self._description[ATTR_DEVICE_CLASS]
|
|
|
|
@property
|
|
def icon(self) -> str | None:
|
|
"""Return the icon."""
|
|
return self._description[ATTR_ICON]
|
|
|
|
@property
|
|
def entity_registry_enabled_default(self) -> bool:
|
|
"""Return if the entity should be enabled when first added to the entity registry."""
|
|
return self._description[ATTR_ENABLED]
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return a unique_id for this entity."""
|
|
return f"{self.coordinator.unique_id}-{self.sensor_type}"
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Return the device info."""
|
|
return self.coordinator.device_info
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if entity is available."""
|
|
available = super().available
|
|
|
|
# For a short time after booting, the device does not return values for all
|
|
# sensors. For this reason, we mark entities for which data is missing as
|
|
# unavailable.
|
|
return available and bool(
|
|
getattr(self.coordinator.data, self.sensor_type, None)
|
|
)
|
|
|
|
|
|
class NAMSensorUptime(NAMSensor):
|
|
"""Define an Nettigo Air Monitor uptime sensor."""
|
|
|
|
@property
|
|
def state(self) -> str:
|
|
"""Return the state."""
|
|
uptime_sec = getattr(self.coordinator.data, self.sensor_type)
|
|
return (
|
|
(utcnow() - timedelta(seconds=uptime_sec))
|
|
.replace(microsecond=0)
|
|
.isoformat()
|
|
)
|