1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-27 06:28:31 +00:00

Add Types to Homematic IP (#23401)

This commit is contained in:
Markus Jankowski
2019-04-26 00:13:07 +02:00
committed by Paulus Schoutsen
parent cef7ce11ad
commit 9d67c9feb6
12 changed files with 174 additions and 130 deletions

View File

@@ -1,12 +1,15 @@
"""Support for HomematicIP Cloud climate devices."""
import logging
from homematicip.group import HeatingGroup
from homematicip.aio.group import AsyncHeatingGroup
from homematicip.aio.home import AsyncHome
from homeassistant.components.climate import ClimateDevice
from homeassistant.components.climate.const import (
STATE_AUTO, STATE_MANUAL, SUPPORT_TARGET_TEMPERATURE)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import ATTR_TEMPERATURE, TEMP_CELSIUS
from homeassistant.core import HomeAssistant
from . import DOMAIN as HMIPC_DOMAIN, HMIPC_HAPID, HomematicipGenericDevice
@@ -26,12 +29,13 @@ async def async_setup_platform(
pass
async def async_setup_entry(hass, config_entry, async_add_entities):
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry,
async_add_entities) -> None:
"""Set up the HomematicIP climate from a config entry."""
home = hass.data[HMIPC_DOMAIN][config_entry.data[HMIPC_HAPID]].home
devices = []
for device in home.groups:
if isinstance(device, HeatingGroup):
if isinstance(device, AsyncHeatingGroup):
devices.append(HomematicipHeatingGroup(home, device))
if devices:
@@ -41,48 +45,48 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
class HomematicipHeatingGroup(HomematicipGenericDevice, ClimateDevice):
"""Representation of a HomematicIP heating group."""
def __init__(self, home, device):
def __init__(self, home: AsyncHome, device) -> None:
"""Initialize heating group."""
device.modelType = 'Group-Heating'
super().__init__(home, device)
@property
def temperature_unit(self):
def temperature_unit(self) -> str:
"""Return the unit of measurement."""
return TEMP_CELSIUS
@property
def supported_features(self):
def supported_features(self) -> int:
"""Return the list of supported features."""
return SUPPORT_TARGET_TEMPERATURE
@property
def target_temperature(self):
def target_temperature(self) -> float:
"""Return the temperature we try to reach."""
return self._device.setPointTemperature
@property
def current_temperature(self):
def current_temperature(self) -> float:
"""Return the current temperature."""
return self._device.actualTemperature
@property
def current_humidity(self):
def current_humidity(self) -> int:
"""Return the current humidity."""
return self._device.humidity
@property
def current_operation(self):
def current_operation(self) -> str:
"""Return current operation ie. automatic or manual."""
return HMIP_STATE_TO_HA.get(self._device.controlMode)
@property
def min_temp(self):
def min_temp(self) -> float:
"""Return the minimum temperature."""
return self._device.minTemperature
@property
def max_temp(self):
def max_temp(self) -> float:
"""Return the maximum temperature."""
return self._device.maxTemperature