228 lines
6.3 KiB
Python
228 lines
6.3 KiB
Python
"""Support for eQ-3 Bluetooth Smart thermostats."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from bluepy.btle import BTLEException # pylint: disable=import-error
|
|
import eq3bt as eq3 # pylint: disable=import-error
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.climate import (
|
|
PLATFORM_SCHEMA,
|
|
ClimateEntity,
|
|
ClimateEntityFeature,
|
|
)
|
|
from homeassistant.components.climate.const import (
|
|
HVAC_MODE_AUTO,
|
|
HVAC_MODE_HEAT,
|
|
HVAC_MODE_OFF,
|
|
PRESET_AWAY,
|
|
PRESET_BOOST,
|
|
PRESET_NONE,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_TEMPERATURE,
|
|
CONF_DEVICES,
|
|
CONF_MAC,
|
|
PRECISION_HALVES,
|
|
TEMP_CELSIUS,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.device_registry import format_mac
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from .const import PRESET_CLOSED, PRESET_NO_HOLD, PRESET_OPEN, PRESET_PERMANENT_HOLD
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
STATE_BOOST = "boost"
|
|
|
|
ATTR_STATE_WINDOW_OPEN = "window_open"
|
|
ATTR_STATE_VALVE = "valve"
|
|
ATTR_STATE_LOCKED = "is_locked"
|
|
ATTR_STATE_LOW_BAT = "low_battery"
|
|
ATTR_STATE_AWAY_END = "away_end"
|
|
|
|
EQ_TO_HA_HVAC = {
|
|
eq3.Mode.Open: HVAC_MODE_HEAT,
|
|
eq3.Mode.Closed: HVAC_MODE_OFF,
|
|
eq3.Mode.Auto: HVAC_MODE_AUTO,
|
|
eq3.Mode.Manual: HVAC_MODE_HEAT,
|
|
eq3.Mode.Boost: HVAC_MODE_AUTO,
|
|
eq3.Mode.Away: HVAC_MODE_HEAT,
|
|
}
|
|
|
|
HA_TO_EQ_HVAC = {
|
|
HVAC_MODE_HEAT: eq3.Mode.Manual,
|
|
HVAC_MODE_OFF: eq3.Mode.Closed,
|
|
HVAC_MODE_AUTO: eq3.Mode.Auto,
|
|
}
|
|
|
|
EQ_TO_HA_PRESET = {
|
|
eq3.Mode.Boost: PRESET_BOOST,
|
|
eq3.Mode.Away: PRESET_AWAY,
|
|
eq3.Mode.Manual: PRESET_PERMANENT_HOLD,
|
|
eq3.Mode.Auto: PRESET_NO_HOLD,
|
|
eq3.Mode.Open: PRESET_OPEN,
|
|
eq3.Mode.Closed: PRESET_CLOSED,
|
|
}
|
|
|
|
HA_TO_EQ_PRESET = {
|
|
PRESET_BOOST: eq3.Mode.Boost,
|
|
PRESET_AWAY: eq3.Mode.Away,
|
|
PRESET_PERMANENT_HOLD: eq3.Mode.Manual,
|
|
PRESET_NO_HOLD: eq3.Mode.Auto,
|
|
PRESET_OPEN: eq3.Mode.Open,
|
|
PRESET_CLOSED: eq3.Mode.Closed,
|
|
}
|
|
|
|
|
|
DEVICE_SCHEMA = vol.Schema({vol.Required(CONF_MAC): cv.string})
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
{vol.Required(CONF_DEVICES): vol.Schema({cv.string: DEVICE_SCHEMA})}
|
|
)
|
|
|
|
|
|
def setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the eQ-3 BLE thermostats."""
|
|
devices = []
|
|
|
|
for name, device_cfg in config[CONF_DEVICES].items():
|
|
mac = device_cfg[CONF_MAC]
|
|
devices.append(EQ3BTSmartThermostat(mac, name))
|
|
|
|
add_entities(devices, True)
|
|
|
|
|
|
class EQ3BTSmartThermostat(ClimateEntity):
|
|
"""Representation of an eQ-3 Bluetooth Smart thermostat."""
|
|
|
|
_attr_supported_features = (
|
|
ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.PRESET_MODE
|
|
)
|
|
|
|
def __init__(self, _mac, _name):
|
|
"""Initialize the thermostat."""
|
|
# We want to avoid name clash with this module.
|
|
self._name = _name
|
|
self._mac = _mac
|
|
self._thermostat = eq3.Thermostat(_mac)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if thermostat is available."""
|
|
return self._thermostat.mode >= 0
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the device."""
|
|
return self._name
|
|
|
|
@property
|
|
def temperature_unit(self):
|
|
"""Return the unit of measurement that is used."""
|
|
return TEMP_CELSIUS
|
|
|
|
@property
|
|
def precision(self):
|
|
"""Return eq3bt's precision 0.5."""
|
|
return PRECISION_HALVES
|
|
|
|
@property
|
|
def current_temperature(self):
|
|
"""Can not report temperature, so return target_temperature."""
|
|
return self.target_temperature
|
|
|
|
@property
|
|
def target_temperature(self):
|
|
"""Return the temperature we try to reach."""
|
|
return self._thermostat.target_temperature
|
|
|
|
def set_temperature(self, **kwargs):
|
|
"""Set new target temperature."""
|
|
if (temperature := kwargs.get(ATTR_TEMPERATURE)) is None:
|
|
return
|
|
self._thermostat.target_temperature = temperature
|
|
|
|
@property
|
|
def hvac_mode(self):
|
|
"""Return the current operation mode."""
|
|
if self._thermostat.mode < 0:
|
|
return HVAC_MODE_OFF
|
|
return EQ_TO_HA_HVAC[self._thermostat.mode]
|
|
|
|
@property
|
|
def hvac_modes(self):
|
|
"""Return the list of available operation modes."""
|
|
return list(HA_TO_EQ_HVAC)
|
|
|
|
def set_hvac_mode(self, hvac_mode):
|
|
"""Set operation mode."""
|
|
self._thermostat.mode = HA_TO_EQ_HVAC[hvac_mode]
|
|
|
|
@property
|
|
def min_temp(self):
|
|
"""Return the minimum temperature."""
|
|
return self._thermostat.min_temp
|
|
|
|
@property
|
|
def max_temp(self):
|
|
"""Return the maximum temperature."""
|
|
return self._thermostat.max_temp
|
|
|
|
@property
|
|
def extra_state_attributes(self):
|
|
"""Return the device specific state attributes."""
|
|
dev_specific = {
|
|
ATTR_STATE_AWAY_END: self._thermostat.away_end,
|
|
ATTR_STATE_LOCKED: self._thermostat.locked,
|
|
ATTR_STATE_LOW_BAT: self._thermostat.low_battery,
|
|
ATTR_STATE_VALVE: self._thermostat.valve_state,
|
|
ATTR_STATE_WINDOW_OPEN: self._thermostat.window_open,
|
|
}
|
|
|
|
return dev_specific
|
|
|
|
@property
|
|
def preset_mode(self):
|
|
"""Return the current preset mode, e.g., home, away, temp.
|
|
|
|
Requires ClimateEntityFeature.PRESET_MODE.
|
|
"""
|
|
return EQ_TO_HA_PRESET.get(self._thermostat.mode)
|
|
|
|
@property
|
|
def preset_modes(self):
|
|
"""Return a list of available preset modes.
|
|
|
|
Requires ClimateEntityFeature.PRESET_MODE.
|
|
"""
|
|
return list(HA_TO_EQ_PRESET)
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return the MAC address of the thermostat."""
|
|
return format_mac(self._mac)
|
|
|
|
def set_preset_mode(self, preset_mode):
|
|
"""Set new preset mode."""
|
|
if preset_mode == PRESET_NONE:
|
|
self.set_hvac_mode(HVAC_MODE_HEAT)
|
|
self._thermostat.mode = HA_TO_EQ_PRESET[preset_mode]
|
|
|
|
def update(self):
|
|
"""Update the data from the thermostat."""
|
|
|
|
try:
|
|
self._thermostat.update()
|
|
except BTLEException as ex:
|
|
_LOGGER.warning("Updating the state failed: %s", ex)
|