core/homeassistant/components/danfoss_air/sensor.py

123 lines
3.4 KiB
Python

"""Support for the for Danfoss Air HRV sensors."""
import logging
from pydanfossair.commands import ReadCommand
from homeassistant.components.sensor import (
SensorDeviceClass,
SensorEntity,
SensorStateClass,
)
from homeassistant.const import PERCENTAGE, TEMP_CELSIUS
from . import DOMAIN as DANFOSS_AIR_DOMAIN
_LOGGER = logging.getLogger(__name__)
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up the available Danfoss Air sensors etc."""
data = hass.data[DANFOSS_AIR_DOMAIN]
sensors = [
[
"Danfoss Air Exhaust Temperature",
TEMP_CELSIUS,
ReadCommand.exhaustTemperature,
SensorDeviceClass.TEMPERATURE,
SensorStateClass.MEASUREMENT,
],
[
"Danfoss Air Outdoor Temperature",
TEMP_CELSIUS,
ReadCommand.outdoorTemperature,
SensorDeviceClass.TEMPERATURE,
SensorStateClass.MEASUREMENT,
],
[
"Danfoss Air Supply Temperature",
TEMP_CELSIUS,
ReadCommand.supplyTemperature,
SensorDeviceClass.TEMPERATURE,
SensorStateClass.MEASUREMENT,
],
[
"Danfoss Air Extract Temperature",
TEMP_CELSIUS,
ReadCommand.extractTemperature,
SensorDeviceClass.TEMPERATURE,
SensorStateClass.MEASUREMENT,
],
[
"Danfoss Air Remaining Filter",
PERCENTAGE,
ReadCommand.filterPercent,
None,
None,
],
[
"Danfoss Air Humidity",
PERCENTAGE,
ReadCommand.humidity,
SensorDeviceClass.HUMIDITY,
SensorStateClass.MEASUREMENT,
],
["Danfoss Air Fan Step", PERCENTAGE, ReadCommand.fan_step, None, None],
[
"Danfoss Air Exhaust Fan Speed",
"RPM",
ReadCommand.exhaust_fan_speed,
None,
None,
],
[
"Danfoss Air Supply Fan Speed",
"RPM",
ReadCommand.supply_fan_speed,
None,
None,
],
[
"Danfoss Air Dial Battery",
PERCENTAGE,
ReadCommand.battery_percent,
SensorDeviceClass.BATTERY,
None,
],
]
dev = []
for sensor in sensors:
dev.append(
DanfossAir(data, sensor[0], sensor[1], sensor[2], sensor[3], sensor[4])
)
add_entities(dev, True)
class DanfossAir(SensorEntity):
"""Representation of a Sensor."""
def __init__(self, data, name, sensor_unit, sensor_type, device_class, state_class):
"""Initialize the sensor."""
self._data = data
self._attr_name = name
self._attr_native_value = None
self._type = sensor_type
self._attr_native_unit_of_measurement = sensor_unit
self._attr_device_class = device_class
self._attr_state_class = state_class
def update(self):
"""Update the new state of the sensor.
This is done through the DanfossAir object that does the actual
communication with the Air CCM.
"""
self._data.update()
self._attr_native_value = self._data.get_value(self._type)
if self._attr_native_value is None:
_LOGGER.debug("Could not get data for %s", self._type)