"""Platform for solarlog sensors.""" from homeassistant.components.sensor import SensorEntity from homeassistant.helpers import update_coordinator from homeassistant.helpers.entity import DeviceInfo from homeassistant.util.dt import as_local from . import SolarlogData from .const import DOMAIN, SENSOR_TYPES, SolarLogSensorEntityDescription async def async_setup_entry(hass, entry, async_add_entities): """Add solarlog entry.""" coordinator = hass.data[DOMAIN][entry.entry_id] async_add_entities( SolarlogSensor(coordinator, description) for description in SENSOR_TYPES ) class SolarlogSensor(update_coordinator.CoordinatorEntity, SensorEntity): """Representation of a Sensor.""" entity_description: SolarLogSensorEntityDescription def __init__( self, coordinator: SolarlogData, description: SolarLogSensorEntityDescription, ) -> None: """Initialize the sensor.""" super().__init__(coordinator) self.entity_description = description self._attr_name = f"{coordinator.name} {description.name}" self._attr_unique_id = f"{coordinator.unique_id}_{description.key}" self._attr_device_info = DeviceInfo( identifiers={(DOMAIN, coordinator.unique_id)}, manufacturer="Solar-Log", name=coordinator.name, configuration_url=coordinator.host, ) @property def native_value(self): """Return the native sensor value.""" if self.entity_description.key == "time": state = as_local( getattr(self.coordinator.data, self.entity_description.key) ) else: result = getattr(self.coordinator.data, self.entity_description.key) if self.entity_description.factor: state = round(result * self.entity_description.factor, 3) else: state = result return state