114 lines
3.9 KiB
Python
114 lines
3.9 KiB
Python
"""Support for LiteJet lights."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from pylitejet import LiteJet
|
|
|
|
from homeassistant.components.light import (
|
|
ATTR_BRIGHTNESS,
|
|
ATTR_TRANSITION,
|
|
ColorMode,
|
|
LightEntity,
|
|
LightEntityFeature,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import CONF_DEFAULT_TRANSITION, DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
ATTR_NUMBER = "number"
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up entry."""
|
|
|
|
system: LiteJet = hass.data[DOMAIN]
|
|
|
|
def get_entities(system: LiteJet) -> list[LiteJetLight]:
|
|
entities = []
|
|
for index in system.loads():
|
|
name = system.get_load_name(index)
|
|
entities.append(LiteJetLight(config_entry, system, index, name))
|
|
return entities
|
|
|
|
async_add_entities(await hass.async_add_executor_job(get_entities, system), True)
|
|
|
|
|
|
class LiteJetLight(LightEntity):
|
|
"""Representation of a single LiteJet light."""
|
|
|
|
_attr_color_mode = ColorMode.BRIGHTNESS
|
|
_attr_should_poll = False
|
|
_attr_supported_color_modes = {ColorMode.BRIGHTNESS}
|
|
_attr_supported_features = LightEntityFeature.TRANSITION
|
|
|
|
def __init__(
|
|
self, config_entry: ConfigEntry, litejet: LiteJet, index: int, name: str
|
|
) -> None:
|
|
"""Initialize a LiteJet light."""
|
|
self._config_entry = config_entry
|
|
self._lj = litejet
|
|
self._index = index
|
|
self._attr_brightness = 0
|
|
self._attr_is_on = False
|
|
self._attr_name = name
|
|
self._attr_unique_id = f"{config_entry.entry_id}_{index}"
|
|
self._attr_extra_state_attributes = {ATTR_NUMBER: self._index}
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Run when this Entity has been added to HA."""
|
|
self._lj.on_load_activated(self._index, self._on_load_changed)
|
|
self._lj.on_load_deactivated(self._index, self._on_load_changed)
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
|
"""Entity being removed from hass."""
|
|
self._lj.unsubscribe(self._on_load_changed)
|
|
|
|
def _on_load_changed(self) -> None:
|
|
"""Handle state changes."""
|
|
_LOGGER.debug("Updating due to notification for %s", self.name)
|
|
self.schedule_update_ha_state(True)
|
|
|
|
def turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn on the light."""
|
|
|
|
# If neither attribute is specified then the simple activate load
|
|
# LiteJet API will use the per-light default brightness and
|
|
# transition values programmed in the LiteJet system.
|
|
if ATTR_BRIGHTNESS not in kwargs and ATTR_TRANSITION not in kwargs:
|
|
self._lj.activate_load(self._index)
|
|
return
|
|
|
|
# If either attribute is specified then Home Assistant must
|
|
# control both values.
|
|
default_transition = self._config_entry.options.get(CONF_DEFAULT_TRANSITION, 0)
|
|
transition = kwargs.get(ATTR_TRANSITION, default_transition)
|
|
brightness = int(kwargs.get(ATTR_BRIGHTNESS, 255) / 255 * 99)
|
|
|
|
self._lj.activate_load_at(self._index, brightness, int(transition))
|
|
|
|
def turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn off the light."""
|
|
if ATTR_TRANSITION in kwargs:
|
|
self._lj.activate_load_at(self._index, 0, kwargs[ATTR_TRANSITION])
|
|
return
|
|
|
|
# If transition attribute is not specified then the simple
|
|
# deactivate load LiteJet API will use the per-light default
|
|
# transition value programmed in the LiteJet system.
|
|
self._lj.deactivate_load(self._index)
|
|
|
|
def update(self) -> None:
|
|
"""Retrieve the light's brightness from the LiteJet system."""
|
|
self._attr_brightness = int(self._lj.get_load_level(self._index) / 99 * 255)
|
|
self._attr_is_on = self.brightness != 0
|