87 lines
2.8 KiB
Python
87 lines
2.8 KiB
Python
"""Support for Lutron lights."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.light import ATTR_BRIGHTNESS, ColorMode, LightEntity
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from . import LUTRON_CONTROLLER, LUTRON_DEVICES, LutronDevice
|
|
|
|
|
|
def setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the Lutron lights."""
|
|
devs = []
|
|
for area_name, device in hass.data[LUTRON_DEVICES]["light"]:
|
|
dev = LutronLight(area_name, device, hass.data[LUTRON_CONTROLLER])
|
|
devs.append(dev)
|
|
|
|
add_entities(devs, True)
|
|
|
|
|
|
def to_lutron_level(level):
|
|
"""Convert the given Home Assistant light level (0-255) to Lutron (0.0-100.0)."""
|
|
return float((level * 100) / 255)
|
|
|
|
|
|
def to_hass_level(level):
|
|
"""Convert the given Lutron (0.0-100.0) light level to Home Assistant (0-255)."""
|
|
return int((level * 255) / 100)
|
|
|
|
|
|
class LutronLight(LutronDevice, LightEntity):
|
|
"""Representation of a Lutron Light, including dimmable."""
|
|
|
|
_attr_color_mode = ColorMode.BRIGHTNESS
|
|
_attr_supported_color_modes = {ColorMode.BRIGHTNESS}
|
|
|
|
def __init__(self, area_name, lutron_device, controller):
|
|
"""Initialize the light."""
|
|
self._prev_brightness = None
|
|
super().__init__(area_name, lutron_device, controller)
|
|
|
|
@property
|
|
def brightness(self):
|
|
"""Return the brightness of the light."""
|
|
new_brightness = to_hass_level(self._lutron_device.last_level())
|
|
if new_brightness != 0:
|
|
self._prev_brightness = new_brightness
|
|
return new_brightness
|
|
|
|
def turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn the light on."""
|
|
if ATTR_BRIGHTNESS in kwargs and self._lutron_device.is_dimmable:
|
|
brightness = kwargs[ATTR_BRIGHTNESS]
|
|
elif self._prev_brightness == 0:
|
|
brightness = 255 / 2
|
|
else:
|
|
brightness = self._prev_brightness
|
|
self._prev_brightness = brightness
|
|
self._lutron_device.level = to_lutron_level(brightness)
|
|
|
|
def turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn the light off."""
|
|
self._lutron_device.level = 0
|
|
|
|
@property
|
|
def extra_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return {"lutron_integration_id": self._lutron_device.id}
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if device is on."""
|
|
return self._lutron_device.last_level() > 0
|
|
|
|
def update(self) -> None:
|
|
"""Call when forcing a refresh of the device."""
|
|
if self._prev_brightness is None:
|
|
self._prev_brightness = to_hass_level(self._lutron_device.level)
|