121 lines
3.9 KiB
Python
121 lines
3.9 KiB
Python
"""
|
|
Support for Waterfurnace.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/sensor.waterfurnace/
|
|
"""
|
|
|
|
from homeassistant.components.sensor import ENTITY_ID_FORMAT
|
|
from homeassistant.components.waterfurnace import (
|
|
DOMAIN as WF_DOMAIN, UPDATE_TOPIC
|
|
)
|
|
from homeassistant.const import TEMP_FAHRENHEIT
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.entity import Entity
|
|
from homeassistant.util import slugify
|
|
|
|
|
|
class WFSensorConfig:
|
|
"""Water Furnace Sensor configuration."""
|
|
|
|
def __init__(self, friendly_name, field, icon="mdi:gauge",
|
|
unit_of_measurement=None):
|
|
"""Initialize configuration."""
|
|
self.friendly_name = friendly_name
|
|
self.field = field
|
|
self.icon = icon
|
|
self.unit_of_measurement = unit_of_measurement
|
|
|
|
|
|
SENSORS = [
|
|
WFSensorConfig("Furnace Mode", "mode"),
|
|
WFSensorConfig("Total Power", "totalunitpower", "mdi:flash", "W"),
|
|
WFSensorConfig("Active Setpoint", "tstatactivesetpoint",
|
|
"mdi:thermometer", TEMP_FAHRENHEIT),
|
|
WFSensorConfig("Leaving Air", "leavingairtemp",
|
|
"mdi:thermometer", TEMP_FAHRENHEIT),
|
|
WFSensorConfig("Room Temp", "tstatroomtemp",
|
|
"mdi:thermometer", TEMP_FAHRENHEIT),
|
|
WFSensorConfig("Loop Temp", "enteringwatertemp",
|
|
"mdi:thermometer", TEMP_FAHRENHEIT),
|
|
WFSensorConfig("Humidity Set Point", "tstathumidsetpoint",
|
|
"mdi:water-percent", "%"),
|
|
WFSensorConfig("Humidity", "tstatrelativehumidity",
|
|
"mdi:water-percent", "%"),
|
|
WFSensorConfig("Compressor Power", "compressorpower", "mdi:flash", "W"),
|
|
WFSensorConfig("Fan Power", "fanpower", "mdi:flash", "W"),
|
|
WFSensorConfig("Aux Power", "auxpower", "mdi:flash", "W"),
|
|
WFSensorConfig("Loop Pump Power", "looppumppower", "mdi:flash", "W"),
|
|
WFSensorConfig("Compressor Speed", "actualcompressorspeed",
|
|
"mdi:speedometer"),
|
|
WFSensorConfig("Fan Speed", "airflowcurrentspeed", "mdi:fan"),
|
|
|
|
]
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Waterfurnace sensor."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
sensors = []
|
|
client = hass.data[WF_DOMAIN]
|
|
for sconfig in SENSORS:
|
|
sensors.append(WaterFurnaceSensor(client, sconfig))
|
|
|
|
add_entities(sensors)
|
|
|
|
|
|
class WaterFurnaceSensor(Entity):
|
|
"""Implementing the Waterfurnace sensor."""
|
|
|
|
def __init__(self, client, config):
|
|
"""Initialize the sensor."""
|
|
self.client = client
|
|
self._name = config.friendly_name
|
|
self._attr = config.field
|
|
self._state = None
|
|
self._icon = config.icon
|
|
self._unit_of_measurement = config.unit_of_measurement
|
|
|
|
# This ensures that the sensors are isolated per waterfurnace unit
|
|
self.entity_id = ENTITY_ID_FORMAT.format(
|
|
'wf_{}_{}'.format(slugify(self.client.unit), slugify(self._attr)))
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._state
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return icon."""
|
|
return self._icon
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the units of measurement."""
|
|
return self._unit_of_measurement
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""Return the polling state."""
|
|
return False
|
|
|
|
async def async_added_to_hass(self):
|
|
"""Register callbacks."""
|
|
self.hass.helpers.dispatcher.async_dispatcher_connect(
|
|
UPDATE_TOPIC, self.async_update_callback)
|
|
|
|
@callback
|
|
def async_update_callback(self):
|
|
"""Update state."""
|
|
if self.client.data is not None:
|
|
self._state = getattr(self.client.data, self._attr, None)
|
|
self.async_schedule_update_ha_state()
|