2022-04-04 18:26:33 +00:00
|
|
|
"""Support for Honeywell (US) Total Connect Comfort sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from collections.abc import Callable
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from somecomfort import Device
|
|
|
|
|
|
|
|
from homeassistant.components.sensor import (
|
2022-04-04 19:23:57 +00:00
|
|
|
SensorDeviceClass,
|
2022-04-04 18:26:33 +00:00
|
|
|
SensorEntity,
|
|
|
|
SensorEntityDescription,
|
|
|
|
SensorStateClass,
|
|
|
|
)
|
2022-04-13 17:17:38 +00:00
|
|
|
from homeassistant.config_entries import ConfigEntry
|
2022-04-04 19:23:57 +00:00
|
|
|
from homeassistant.const import PERCENTAGE, TEMP_CELSIUS, TEMP_FAHRENHEIT
|
2022-04-13 17:17:38 +00:00
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
2022-04-04 18:26:33 +00:00
|
|
|
from homeassistant.helpers.typing import StateType
|
|
|
|
|
|
|
|
from .const import DOMAIN, HUMIDITY_STATUS_KEY, TEMPERATURE_STATUS_KEY
|
|
|
|
|
|
|
|
|
|
|
|
def _get_temperature_sensor_unit(device: Device) -> str:
|
|
|
|
"""Get the correct temperature unit for the device."""
|
|
|
|
return TEMP_CELSIUS if device.temperature_unit == "C" else TEMP_FAHRENHEIT
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class HoneywellSensorEntityDescriptionMixin:
|
|
|
|
"""Mixin for required keys."""
|
|
|
|
|
|
|
|
value_fn: Callable[[Device], Any]
|
|
|
|
unit_fn: Callable[[Device], Any]
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class HoneywellSensorEntityDescription(
|
|
|
|
SensorEntityDescription, HoneywellSensorEntityDescriptionMixin
|
|
|
|
):
|
|
|
|
"""Describes a Honeywell sensor entity."""
|
|
|
|
|
|
|
|
|
|
|
|
SENSOR_TYPES: tuple[HoneywellSensorEntityDescription, ...] = (
|
|
|
|
HoneywellSensorEntityDescription(
|
|
|
|
key=TEMPERATURE_STATUS_KEY,
|
|
|
|
name="Temperature",
|
2022-04-04 19:23:57 +00:00
|
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
2022-04-04 18:26:33 +00:00
|
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
|
|
value_fn=lambda device: device.outdoor_temperature,
|
|
|
|
unit_fn=_get_temperature_sensor_unit,
|
|
|
|
),
|
|
|
|
HoneywellSensorEntityDescription(
|
|
|
|
key=HUMIDITY_STATUS_KEY,
|
|
|
|
name="Humidity",
|
2022-04-04 19:23:57 +00:00
|
|
|
device_class=SensorDeviceClass.HUMIDITY,
|
2022-04-04 18:26:33 +00:00
|
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
|
|
value_fn=lambda device: device.outdoor_humidity,
|
|
|
|
unit_fn=lambda device: PERCENTAGE,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-04-13 17:17:38 +00:00
|
|
|
async def async_setup_entry(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
config_entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
) -> None:
|
2022-04-04 18:26:33 +00:00
|
|
|
"""Set up the Honeywell thermostat."""
|
2022-04-13 17:17:38 +00:00
|
|
|
data = hass.data[DOMAIN][config_entry.entry_id]
|
2022-04-04 18:26:33 +00:00
|
|
|
sensors = []
|
|
|
|
|
|
|
|
for device in data.devices.values():
|
|
|
|
for description in SENSOR_TYPES:
|
|
|
|
if getattr(device, description.key) is not None:
|
|
|
|
sensors.append(HoneywellSensor(device, description))
|
|
|
|
|
|
|
|
async_add_entities(sensors)
|
|
|
|
|
|
|
|
|
|
|
|
class HoneywellSensor(SensorEntity):
|
|
|
|
"""Representation of a Honeywell US Outdoor Temperature Sensor."""
|
|
|
|
|
|
|
|
entity_description: HoneywellSensorEntityDescription
|
|
|
|
|
|
|
|
def __init__(self, device, description):
|
|
|
|
"""Initialize the outdoor temperature sensor."""
|
|
|
|
self._device = device
|
|
|
|
self.entity_description = description
|
2022-04-13 17:17:38 +00:00
|
|
|
self._attr_unique_id = f"{device.deviceid}_{description.key}"
|
2022-04-04 18:26:33 +00:00
|
|
|
self._attr_name = f"{device.name} outdoor {description.device_class}"
|
|
|
|
self._attr_native_unit_of_measurement = description.unit_fn(device)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def native_value(self) -> StateType:
|
|
|
|
"""Return the state."""
|
|
|
|
return self.entity_description.value_fn(self._device)
|