core/homeassistant/components/wemo/light.py

221 lines
6.7 KiB
Python
Raw Normal View History

"""Support for Belkin WeMo lights."""
import asyncio
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
)
from homeassistant.core import 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
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 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
async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up WeMo lights."""
2015-12-26 05:41:33 +00:00
async def _discovered_wemo(coordinator: DeviceCoordinator):
"""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
def async_setup_bridge(hass, config_entry, async_add_entities, coordinator):
"""Set up a WeMo link."""
known_light_ids = set()
2015-12-26 05:41:33 +00:00
@callback
def async_update_lights():
"""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 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
def unique_id(self):
2016-03-07 21:08:21 +00:00
"""Return the ID of this light."""
return 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
def brightness(self):
2016-03-07 21:08:21 +00:00
"""Return the brightness of this light between 0..255."""
return self.light.state.get("level", 255)
@property
def hs_color(self):
"""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
def color_temp(self):
"""Return the color temperature of this light in mireds."""
return self.light.state.get("temperature_mireds")
2015-12-26 05:41:33 +00:00
@property
def is_on(self):
"""Return true if device is on."""
return self.light.state.get("onoff") != WEMO_OFF
2015-12-26 05:41:33 +00:00
@property
def supported_features(self):
"""Flag supported features."""
return SUPPORT_WEMO
2015-12-26 05:41:33 +00:00
def turn_on(self, **kwargs):
"""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()
2015-12-26 05:41:33 +00:00
def turn_off(self, **kwargs):
"""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(WemoEntity, LightEntity):
"""Representation of a WeMo dimmer."""
@property
def supported_features(self):
"""Flag supported features."""
return SUPPORT_BRIGHTNESS
@property
def brightness(self):
"""Return the brightness of this light between 1 and 100."""
wemo_brightness = int(self.wemo.get_brightness())
return int((wemo_brightness * 255) / 100)
@property
def is_on(self) -> bool:
"""Return true if the state is on."""
return self.wemo.get_state()
def turn_on(self, **kwargs):
"""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()
def turn_off(self, **kwargs):
"""Turn the dimmer off."""
with self._wemo_exception_handler("turn off"):
self.wemo.off()
self.schedule_update_ha_state()