mirror of https://github.com/home-assistant/core
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
"""Sensor platform for Garages Amsterdam."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.sensor import SensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
|
|
|
from . import get_coordinator
|
|
from .entity import GaragesAmsterdamEntity
|
|
|
|
SENSORS = {
|
|
"free_space_short",
|
|
"free_space_long",
|
|
"short_capacity",
|
|
"long_capacity",
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Defer sensor setup to the shared sensor module."""
|
|
coordinator = await get_coordinator(hass)
|
|
|
|
async_add_entities(
|
|
GaragesAmsterdamSensor(coordinator, config_entry.data["garage_name"], info_type)
|
|
for info_type in SENSORS
|
|
if getattr(coordinator.data[config_entry.data["garage_name"]], info_type) != ""
|
|
)
|
|
|
|
|
|
class GaragesAmsterdamSensor(GaragesAmsterdamEntity, SensorEntity):
|
|
"""Sensor representing garages amsterdam data."""
|
|
|
|
_attr_native_unit_of_measurement = "cars"
|
|
|
|
def __init__(
|
|
self, coordinator: DataUpdateCoordinator, garage_name: str, info_type: str
|
|
) -> None:
|
|
"""Initialize garages amsterdam sensor."""
|
|
super().__init__(coordinator, garage_name, info_type)
|
|
self._attr_translation_key = info_type
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if sensor is available."""
|
|
return self.coordinator.last_update_success and (
|
|
self._garage_name in self.coordinator.data
|
|
)
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return the state of the sensor."""
|
|
return getattr(self.coordinator.data[self._garage_name], self._info_type)
|