core/homeassistant/components/wemo/light.py

230 lines
7.2 KiB
Python
Raw Normal View History

"""Support for Belkin WeMo lights."""
2021-12-20 00:09:30 +00:00
from __future__ import annotations
import asyncio
from typing import Any, Optional, cast
from pywemo.ouimeaux_device import bridge
2015-12-26 05:41:33 +00:00
from homeassistant.components.light import (
2019-07-31 19:25:30 +00:00
ATTR_BRIGHTNESS,
ATTR_COLOR_TEMP,
ATTR_HS_COLOR,
ATTR_TRANSITION,
SUPPORT_BRIGHTNESS,
SUPPORT_COLOR,
SUPPORT_COLOR_TEMP,
2019-07-31 19:25:30 +00:00
SUPPORT_TRANSITION,
2020-04-26 16:49:41 +00:00
LightEntity,
2019-07-31 19:25:30 +00:00
)
2021-12-20 00:09:30 +00:00
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers.device_registry import CONNECTION_ZIGBEE
from homeassistant.helpers.dispatcher import async_dispatcher_connect
2021-10-28 21:58:33 +00:00
from homeassistant.helpers.entity import DeviceInfo
2021-12-20 00:09:30 +00:00
from homeassistant.helpers.entity_platform import AddEntitiesCallback
import homeassistant.util.color as color_util
2015-12-26 05:41:33 +00:00
from .const import DOMAIN as WEMO_DOMAIN
from .entity import WemoBinaryStateEntity, WemoEntity
from .wemo_device import DeviceCoordinator
2015-12-26 05:41:33 +00:00
2019-07-31 19:25:30 +00:00
SUPPORT_WEMO = (
SUPPORT_BRIGHTNESS | SUPPORT_COLOR_TEMP | SUPPORT_COLOR | SUPPORT_TRANSITION
)
# The WEMO_ constants below come from pywemo itself
WEMO_OFF = 0
2015-12-26 05:41:33 +00:00
2021-12-20 00:09:30 +00:00
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up WeMo lights."""
2015-12-26 05:41:33 +00:00
2021-12-20 00:09:30 +00:00
async def _discovered_wemo(coordinator: DeviceCoordinator) -> None:
"""Handle a discovered Wemo device."""
if isinstance(coordinator.wemo, bridge.Bridge):
async_setup_bridge(hass, config_entry, async_add_entities, coordinator)
else:
async_add_entities([WemoDimmer(coordinator)])
async_dispatcher_connect(hass, f"{WEMO_DOMAIN}.light", _discovered_wemo)
2015-12-26 05:41:33 +00:00
await asyncio.gather(
*(
_discovered_wemo(coordinator)
for coordinator in hass.data[WEMO_DOMAIN]["pending"].pop("light")
)
)
2015-12-26 05:41:33 +00:00
@callback
2021-12-20 00:09:30 +00:00
def async_setup_bridge(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
coordinator: DeviceCoordinator,
) -> None:
"""Set up a WeMo link."""
known_light_ids = set()
2015-12-26 05:41:33 +00:00
@callback
2021-12-20 00:09:30 +00:00
def async_update_lights() -> None:
"""Check to see if the bridge has any new lights."""
2015-12-26 05:41:33 +00:00
new_lights = []
for light_id, light in coordinator.wemo.Lights.items():
if light_id not in known_light_ids:
known_light_ids.add(light_id)
new_lights.append(WemoLight(coordinator, light))
2015-12-26 05:41:33 +00:00
if new_lights:
async_add_entities(new_lights)
2015-12-26 05:41:33 +00:00
async_update_lights()
config_entry.async_on_unload(coordinator.async_add_listener(async_update_lights))
2015-12-26 05:41:33 +00:00
class WemoLight(WemoEntity, LightEntity):
2016-03-07 21:08:21 +00:00
"""Representation of a WeMo light."""
2015-12-26 05:41:33 +00:00
def __init__(self, coordinator: DeviceCoordinator, light: bridge.Light) -> None:
"""Initialize the WeMo light."""
super().__init__(coordinator)
self.light = light
self._unique_id = self.light.uniqueID
self._model_name = type(self.light).__name__
@property
def name(self) -> str:
"""Return the name of the device if any."""
return cast(str, self.light.name)
@property
def available(self) -> bool:
"""Return true if the device is available."""
return super().available and self.light.state.get("available")
2015-12-26 05:41:33 +00:00
@property
2021-12-20 00:09:30 +00:00
def unique_id(self) -> str:
2016-03-07 21:08:21 +00:00
"""Return the ID of this light."""
return cast(str, self.light.uniqueID)
2015-12-26 05:41:33 +00:00
@property
2021-10-28 21:58:33 +00:00
def device_info(self) -> DeviceInfo:
"""Return the device info."""
2021-10-28 21:58:33 +00:00
return DeviceInfo(
connections={(CONNECTION_ZIGBEE, self._unique_id)},
identifiers={(WEMO_DOMAIN, self._unique_id)},
manufacturer="Belkin",
model=self._model_name,
name=self.name,
)
2015-12-26 05:41:33 +00:00
@property
2021-12-20 00:09:30 +00:00
def brightness(self) -> int:
2016-03-07 21:08:21 +00:00
"""Return the brightness of this light between 0..255."""
return cast(int, self.light.state.get("level", 255))
@property
2021-12-20 00:09:30 +00:00
def hs_color(self) -> tuple[float, float] | None:
"""Return the hs color values of this light."""
2021-10-20 15:47:46 +00:00
if xy_color := self.light.state.get("color_xy"):
return color_util.color_xy_to_hs(*xy_color)
return None
@property
2021-12-20 00:09:30 +00:00
def color_temp(self) -> int | None:
"""Return the color temperature of this light in mireds."""
return cast(Optional[int], self.light.state.get("temperature_mireds"))
2015-12-26 05:41:33 +00:00
@property
2021-12-20 00:09:30 +00:00
def is_on(self) -> bool:
"""Return true if device is on."""
return cast(int, self.light.state.get("onoff")) != WEMO_OFF
2015-12-26 05:41:33 +00:00
@property
2021-12-20 00:09:30 +00:00
def supported_features(self) -> int:
"""Flag supported features."""
return SUPPORT_WEMO
2021-12-20 00:09:30 +00:00
def turn_on(self, **kwargs: Any) -> None:
"""Turn the light on."""
xy_color = None
brightness = kwargs.get(ATTR_BRIGHTNESS, self.brightness or 255)
color_temp = kwargs.get(ATTR_COLOR_TEMP)
hs_color = kwargs.get(ATTR_HS_COLOR)
transition_time = int(kwargs.get(ATTR_TRANSITION, 0))
if hs_color is not None:
xy_color = color_util.color_hs_to_xy(*hs_color)
turn_on_kwargs = {
"level": brightness,
"transition": transition_time,
"force_update": False,
}
with self._wemo_exception_handler("turn on"):
if xy_color is not None:
self.light.set_color(xy_color, transition=transition_time)
if color_temp is not None:
self.light.set_temperature(
mireds=color_temp, transition=transition_time
)
self.light.turn_on(**turn_on_kwargs)
2015-12-26 05:41:33 +00:00
self.schedule_update_ha_state()
2021-12-20 00:09:30 +00:00
def turn_off(self, **kwargs: Any) -> None:
"""Turn the light off."""
transition_time = int(kwargs.get(ATTR_TRANSITION, 0))
with self._wemo_exception_handler("turn off"):
self.light.turn_off(transition=transition_time)
2015-12-26 05:41:33 +00:00
self.schedule_update_ha_state()
class WemoDimmer(WemoBinaryStateEntity, LightEntity):
"""Representation of a WeMo dimmer."""
@property
2021-12-20 00:09:30 +00:00
def supported_features(self) -> int:
"""Flag supported features."""
return SUPPORT_BRIGHTNESS
@property
2021-12-20 00:09:30 +00:00
def brightness(self) -> int:
"""Return the brightness of this light between 1 and 100."""
wemo_brightness: int = self.wemo.get_brightness()
return int((wemo_brightness * 255) / 100)
2021-12-20 00:09:30 +00:00
def turn_on(self, **kwargs: Any) -> None:
"""Turn the dimmer on."""
# Wemo dimmer switches use a range of [0, 100] to control
# brightness. Level 255 might mean to set it to previous value
if ATTR_BRIGHTNESS in kwargs:
brightness = kwargs[ATTR_BRIGHTNESS]
brightness = int((brightness / 255) * 100)
2021-07-30 05:08:13 +00:00
with self._wemo_exception_handler("set brightness"):
self.wemo.set_brightness(brightness)
else:
2021-07-30 05:08:13 +00:00
with self._wemo_exception_handler("turn on"):
self.wemo.on()
self.schedule_update_ha_state()
2021-12-20 00:09:30 +00:00
def turn_off(self, **kwargs: Any) -> None:
"""Turn the dimmer off."""
with self._wemo_exception_handler("turn off"):
self.wemo.off()
self.schedule_update_ha_state()