94 lines
2.7 KiB
Python
94 lines
2.7 KiB
Python
|
|
||
|
"""Support for HomematicIP Cloud weather devices."""
|
||
|
import logging
|
||
|
|
||
|
from homeassistant.components.homematicip_cloud import (
|
||
|
DOMAIN as HMIPC_DOMAIN, HMIPC_HAPID, HomematicipGenericDevice)
|
||
|
from homeassistant.components.weather import WeatherEntity
|
||
|
|
||
|
DEPENDENCIES = ['homematicip_cloud']
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
async def async_setup_platform(
|
||
|
hass, config, async_add_entities, discovery_info=None):
|
||
|
"""Set up the HomematicIP Cloud weather sensor."""
|
||
|
pass
|
||
|
|
||
|
|
||
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
||
|
"""Set up the HomematicIP weather sensor from a config entry."""
|
||
|
from homematicip.aio.device import (
|
||
|
AsyncWeatherSensor, AsyncWeatherSensorPlus, AsyncWeatherSensorPro,
|
||
|
)
|
||
|
|
||
|
home = hass.data[HMIPC_DOMAIN][config_entry.data[HMIPC_HAPID]].home
|
||
|
devices = []
|
||
|
for device in home.devices:
|
||
|
if isinstance(device, AsyncWeatherSensorPro):
|
||
|
devices.append(HomematicipWeatherSensorPro(home, device))
|
||
|
elif isinstance(device, (AsyncWeatherSensor, AsyncWeatherSensorPlus)):
|
||
|
devices.append(HomematicipWeatherSensor(home, device))
|
||
|
|
||
|
if devices:
|
||
|
async_add_entities(devices)
|
||
|
|
||
|
|
||
|
class HomematicipWeatherSensor(HomematicipGenericDevice, WeatherEntity):
|
||
|
"""representation of a HomematicIP Cloud weather sensor plus & basic."""
|
||
|
|
||
|
def __init__(self, home, device):
|
||
|
"""Initialize the weather sensor."""
|
||
|
super().__init__(home, device)
|
||
|
|
||
|
@property
|
||
|
def name(self):
|
||
|
"""Return the name of the sensor."""
|
||
|
return self._device.label
|
||
|
|
||
|
@property
|
||
|
def temperature(self):
|
||
|
"""Return the platform temperature."""
|
||
|
return self._device.actualTemperature
|
||
|
|
||
|
@property
|
||
|
def temperature_unit(self):
|
||
|
"""Return the unit of measurement."""
|
||
|
return self.hass.config.units.temperature_unit
|
||
|
|
||
|
@property
|
||
|
def humidity(self):
|
||
|
"""Return the humidity."""
|
||
|
return self._device.humidity
|
||
|
|
||
|
@property
|
||
|
def wind_speed(self):
|
||
|
"""Return the wind speed."""
|
||
|
return self._device.windSpeed
|
||
|
|
||
|
@property
|
||
|
def attribution(self):
|
||
|
"""Return the attribution."""
|
||
|
return "Powered by Homematic IP"
|
||
|
|
||
|
@property
|
||
|
def condition(self):
|
||
|
"""Return the current condition."""
|
||
|
if hasattr(self._device, "raining") and self._device.raining:
|
||
|
return 'rainy'
|
||
|
if self._device.storm:
|
||
|
return 'windy'
|
||
|
if self._device.sunshine:
|
||
|
return 'sunny'
|
||
|
return ''
|
||
|
|
||
|
|
||
|
class HomematicipWeatherSensorPro(HomematicipWeatherSensor):
|
||
|
"""representation of a HomematicIP weather sensor pro."""
|
||
|
|
||
|
@property
|
||
|
def wind_bearing(self):
|
||
|
"""Return the wind bearing."""
|
||
|
return self._device.windDirection
|