"""Support for the Airly sensor service.""" from homeassistant.const import ( ATTR_ATTRIBUTION, ATTR_DEVICE_CLASS, CONF_NAME, DEVICE_CLASS_HUMIDITY, DEVICE_CLASS_PRESSURE, DEVICE_CLASS_TEMPERATURE, PRESSURE_HPA, TEMP_CELSIUS, ) from homeassistant.helpers.entity import Entity from .const import ( ATTR_API_HUMIDITY, ATTR_API_PM1, ATTR_API_PRESSURE, ATTR_API_TEMPERATURE, DATA_CLIENT, DOMAIN, ) ATTRIBUTION = "Data provided by Airly" ATTR_ICON = "icon" ATTR_LABEL = "label" ATTR_UNIT = "unit" HUMI_PERCENT = "%" VOLUME_MICROGRAMS_PER_CUBIC_METER = "µg/m³" SENSOR_TYPES = { ATTR_API_PM1: { ATTR_DEVICE_CLASS: None, ATTR_ICON: "mdi:blur", ATTR_LABEL: ATTR_API_PM1, ATTR_UNIT: VOLUME_MICROGRAMS_PER_CUBIC_METER, }, ATTR_API_HUMIDITY: { ATTR_DEVICE_CLASS: DEVICE_CLASS_HUMIDITY, ATTR_ICON: None, ATTR_LABEL: ATTR_API_HUMIDITY.capitalize(), ATTR_UNIT: HUMI_PERCENT, }, ATTR_API_PRESSURE: { ATTR_DEVICE_CLASS: DEVICE_CLASS_PRESSURE, ATTR_ICON: None, ATTR_LABEL: ATTR_API_PRESSURE.capitalize(), ATTR_UNIT: PRESSURE_HPA, }, ATTR_API_TEMPERATURE: { ATTR_DEVICE_CLASS: DEVICE_CLASS_TEMPERATURE, ATTR_ICON: None, ATTR_LABEL: ATTR_API_TEMPERATURE.capitalize(), ATTR_UNIT: TEMP_CELSIUS, }, } async def async_setup_entry(hass, config_entry, async_add_entities): """Set up Airly sensor entities based on a config entry.""" name = config_entry.data[CONF_NAME] data = hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id] sensors = [] for sensor in SENSOR_TYPES: sensors.append(AirlySensor(data, name, sensor)) async_add_entities(sensors, True) def round_state(func): """Round state.""" def _decorator(self): res = func(self) if isinstance(res, float): return round(res) return res return _decorator class AirlySensor(Entity): """Define an Airly sensor.""" def __init__(self, airly, name, kind): """Initialize.""" self.airly = airly self.data = airly.data self._name = name self.kind = kind self._device_class = None self._state = None self._icon = None self._unit_of_measurement = None self._attrs = {ATTR_ATTRIBUTION: ATTRIBUTION} @property def name(self): """Return the name.""" return f"{self._name} {SENSOR_TYPES[self.kind][ATTR_LABEL]}" @property def state(self): """Return the state.""" self._state = self.data[self.kind] if self.kind in [ATTR_API_PM1, ATTR_API_PRESSURE]: self._state = round(self._state) if self.kind in [ATTR_API_TEMPERATURE, ATTR_API_HUMIDITY]: self._state = round(self._state, 1) return self._state @property def device_state_attributes(self): """Return the state attributes.""" return self._attrs @property def icon(self): """Return the icon.""" self._icon = SENSOR_TYPES[self.kind][ATTR_ICON] return self._icon @property def device_class(self): """Return the device_class.""" return SENSOR_TYPES[self.kind][ATTR_DEVICE_CLASS] @property def unique_id(self): """Return a unique_id for this entity.""" return f"{self.airly.latitude}-{self.airly.longitude}-{self.kind.lower()}" @property def unit_of_measurement(self): """Return the unit the value is expressed in.""" return SENSOR_TYPES[self.kind][ATTR_UNIT] @property def available(self): """Return True if entity is available.""" return bool(self.airly.data) async def async_update(self): """Update the sensor.""" await self.airly.async_update() if self.airly.data: self.data = self.airly.data