core/homeassistant/components/co2signal/sensor.py

111 lines
3.6 KiB
Python

"""Support for the CO2signal platform."""
from __future__ import annotations
from dataclasses import dataclass
from datetime import timedelta
from typing import cast
from homeassistant.components.sensor import (
SensorEntity,
SensorEntityDescription,
SensorStateClass,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import PERCENTAGE
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import DeviceEntryType
from homeassistant.helpers.entity import DeviceInfo
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.update_coordinator import CoordinatorEntity
from . import CO2SignalCoordinator
from .const import ATTRIBUTION, DOMAIN
SCAN_INTERVAL = timedelta(minutes=3)
@dataclass
class CO2SensorEntityDescription(SensorEntityDescription):
"""Provide a description of a CO2 sensor."""
# For backwards compat, allow description to override unique ID key to use
unique_id: str | None = None
SENSORS = (
CO2SensorEntityDescription(
key="carbonIntensity",
name="CO2 intensity",
unique_id="co2intensity",
# No unit, it's extracted from response.
),
CO2SensorEntityDescription(
key="fossilFuelPercentage",
name="Grid fossil fuel percentage",
native_unit_of_measurement=PERCENTAGE,
),
)
async def async_setup_entry(
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
"""Set up the CO2signal sensor."""
coordinator: CO2SignalCoordinator = hass.data[DOMAIN][entry.entry_id]
async_add_entities(CO2Sensor(coordinator, description) for description in SENSORS)
class CO2Sensor(CoordinatorEntity[CO2SignalCoordinator], SensorEntity):
"""Implementation of the CO2Signal sensor."""
entity_description: CO2SensorEntityDescription
_attr_attribution = ATTRIBUTION
_attr_has_entity_name = True
_attr_icon = "mdi:molecule-co2"
_attr_state_class = SensorStateClass.MEASUREMENT
def __init__(
self, coordinator: CO2SignalCoordinator, description: CO2SensorEntityDescription
) -> None:
"""Initialize the sensor."""
super().__init__(coordinator)
self.entity_description = description
self._attr_extra_state_attributes = {
"country_code": coordinator.data["countryCode"],
}
self._attr_device_info = DeviceInfo(
configuration_url="https://www.electricitymap.org/",
entry_type=DeviceEntryType.SERVICE,
identifiers={(DOMAIN, coordinator.entry_id)},
manufacturer="Tmrow.com",
name="CO2 signal",
)
self._attr_unique_id = (
f"{coordinator.entry_id}_{description.unique_id or description.key}"
)
@property
def available(self) -> bool:
"""Return True if entity is available."""
return (
super().available
and self.entity_description.key in self.coordinator.data["data"]
)
@property
def native_value(self) -> float | None:
"""Return sensor state."""
if (value := self.coordinator.data["data"][self.entity_description.key]) is None: # type: ignore[literal-required]
return None
return round(value, 2)
@property
def native_unit_of_measurement(self) -> str | None:
"""Return the unit of measurement."""
if self.entity_description.native_unit_of_measurement:
return self.entity_description.native_unit_of_measurement
return cast(
str, self.coordinator.data["units"].get(self.entity_description.key)
)