277 lines
7.6 KiB
Python
277 lines
7.6 KiB
Python
"""Support for Nexia / Trane XL Thermostats."""
|
|
|
|
from nexia.const import UNIT_CELSIUS
|
|
|
|
from homeassistant.const import (
|
|
ATTR_ATTRIBUTION,
|
|
DEVICE_CLASS_HUMIDITY,
|
|
DEVICE_CLASS_TEMPERATURE,
|
|
TEMP_CELSIUS,
|
|
TEMP_FAHRENHEIT,
|
|
UNIT_PERCENTAGE,
|
|
)
|
|
|
|
from .const import (
|
|
ATTRIBUTION,
|
|
DATA_NEXIA,
|
|
DOMAIN,
|
|
MANUFACTURER,
|
|
NEXIA_DEVICE,
|
|
UPDATE_COORDINATOR,
|
|
)
|
|
from .entity import NexiaEntity
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up sensors for a Nexia device."""
|
|
|
|
nexia_data = hass.data[DOMAIN][config_entry.entry_id][DATA_NEXIA]
|
|
nexia_home = nexia_data[NEXIA_DEVICE]
|
|
coordinator = nexia_data[UPDATE_COORDINATOR]
|
|
entities = []
|
|
|
|
# Thermostat / System Sensors
|
|
for thermostat_id in nexia_home.get_thermostat_ids():
|
|
thermostat = nexia_home.get_thermostat_by_id(thermostat_id)
|
|
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_system_status",
|
|
"System Status",
|
|
None,
|
|
None,
|
|
)
|
|
)
|
|
# Air cleaner
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_air_cleaner_mode",
|
|
"Air Cleaner Mode",
|
|
None,
|
|
None,
|
|
)
|
|
)
|
|
# Compressor Speed
|
|
if thermostat.has_variable_speed_compressor():
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_current_compressor_speed",
|
|
"Current Compressor Speed",
|
|
None,
|
|
UNIT_PERCENTAGE,
|
|
percent_conv,
|
|
)
|
|
)
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_requested_compressor_speed",
|
|
"Requested Compressor Speed",
|
|
None,
|
|
UNIT_PERCENTAGE,
|
|
percent_conv,
|
|
)
|
|
)
|
|
# Outdoor Temperature
|
|
if thermostat.has_outdoor_temperature():
|
|
unit = (
|
|
TEMP_CELSIUS
|
|
if thermostat.get_unit() == UNIT_CELSIUS
|
|
else TEMP_FAHRENHEIT
|
|
)
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_outdoor_temperature",
|
|
"Outdoor Temperature",
|
|
DEVICE_CLASS_TEMPERATURE,
|
|
unit,
|
|
)
|
|
)
|
|
# Relative Humidity
|
|
if thermostat.has_relative_humidity():
|
|
entities.append(
|
|
NexiaSensor(
|
|
coordinator,
|
|
thermostat,
|
|
"get_relative_humidity",
|
|
"Relative Humidity",
|
|
DEVICE_CLASS_HUMIDITY,
|
|
UNIT_PERCENTAGE,
|
|
percent_conv,
|
|
)
|
|
)
|
|
|
|
# Zone Sensors
|
|
for zone_id in thermostat.get_zone_ids():
|
|
zone = thermostat.get_zone_by_id(zone_id)
|
|
unit = (
|
|
TEMP_CELSIUS
|
|
if thermostat.get_unit() == UNIT_CELSIUS
|
|
else TEMP_FAHRENHEIT
|
|
)
|
|
# Temperature
|
|
entities.append(
|
|
NexiaZoneSensor(
|
|
coordinator,
|
|
zone,
|
|
"get_temperature",
|
|
"Temperature",
|
|
DEVICE_CLASS_TEMPERATURE,
|
|
unit,
|
|
None,
|
|
)
|
|
)
|
|
# Zone Status
|
|
entities.append(
|
|
NexiaZoneSensor(
|
|
coordinator, zone, "get_status", "Zone Status", None, None,
|
|
)
|
|
)
|
|
# Setpoint Status
|
|
entities.append(
|
|
NexiaZoneSensor(
|
|
coordinator,
|
|
zone,
|
|
"get_setpoint_status",
|
|
"Zone Setpoint Status",
|
|
None,
|
|
None,
|
|
)
|
|
)
|
|
|
|
async_add_entities(entities, True)
|
|
|
|
|
|
def percent_conv(val):
|
|
"""Convert an actual percentage (0.0-1.0) to 0-100 scale."""
|
|
return val * 100.0
|
|
|
|
|
|
class NexiaSensor(NexiaEntity):
|
|
"""Provides Nexia thermostat sensor support."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator,
|
|
device,
|
|
sensor_call,
|
|
sensor_name,
|
|
sensor_class,
|
|
sensor_unit,
|
|
modifier=None,
|
|
):
|
|
"""Initialize the sensor."""
|
|
super().__init__(coordinator)
|
|
self._coordinator = coordinator
|
|
self._device = device
|
|
self._call = sensor_call
|
|
self._sensor_name = sensor_name
|
|
self._class = sensor_class
|
|
self._state = None
|
|
self._name = f"{self._device.get_name()} {self._sensor_name}"
|
|
self._unit_of_measurement = sensor_unit
|
|
self._modifier = modifier
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return the unique id of the sensor."""
|
|
# This is the thermostat unique_id
|
|
return f"{self._device.thermostat_id}_{self._call}"
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the device specific state attributes."""
|
|
return {
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
}
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the device class of the sensor."""
|
|
return self._class
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
val = getattr(self._device, self._call)()
|
|
if self._modifier:
|
|
val = self._modifier(val)
|
|
if isinstance(val, float):
|
|
val = round(val, 1)
|
|
return val
|
|
|
|
@property
|
|
def unit_of_measurement(self):
|
|
"""Return the unit of measurement this sensor expresses itself in."""
|
|
return self._unit_of_measurement
|
|
|
|
@property
|
|
def device_info(self):
|
|
"""Return the device_info of the device."""
|
|
return {
|
|
"identifiers": {(DOMAIN, self._device.thermostat_id)},
|
|
"name": self._device.get_name(),
|
|
"model": self._device.get_model(),
|
|
"sw_version": self._device.get_firmware(),
|
|
"manufacturer": MANUFACTURER,
|
|
}
|
|
|
|
|
|
class NexiaZoneSensor(NexiaSensor):
|
|
"""Nexia Zone Sensor Support."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator,
|
|
device,
|
|
sensor_call,
|
|
sensor_name,
|
|
sensor_class,
|
|
sensor_unit,
|
|
modifier=None,
|
|
):
|
|
"""Create a zone sensor."""
|
|
|
|
super().__init__(
|
|
coordinator,
|
|
device,
|
|
sensor_call,
|
|
sensor_name,
|
|
sensor_class,
|
|
sensor_unit,
|
|
modifier,
|
|
)
|
|
self._device = device
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return the unique id of the sensor."""
|
|
# This is the zone unique_id
|
|
return f"{self._device.zone_id}_{self._call}"
|
|
|
|
@property
|
|
def device_info(self):
|
|
"""Return the device_info of the device."""
|
|
return {
|
|
"identifiers": {(DOMAIN, self._device.zone_id)},
|
|
"name": self._device.get_name(),
|
|
"model": self._device.thermostat.get_model(),
|
|
"sw_version": self._device.thermostat.get_firmware(),
|
|
"manufacturer": MANUFACTURER,
|
|
"via_device": (DOMAIN, self._device.thermostat.thermostat_id),
|
|
}
|