2021-08-21 07:34:32 +00:00
|
|
|
"""Support for lights."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from fjaraskupan import COMMAND_LIGHT_ON_OFF, Device, State
|
|
|
|
|
2022-04-23 19:20:39 +00:00
|
|
|
from homeassistant.components.light import ATTR_BRIGHTNESS, ColorMode, LightEntity
|
2021-08-21 07:34:32 +00:00
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from homeassistant.helpers.entity import DeviceInfo, Entity
|
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from homeassistant.helpers.update_coordinator import (
|
|
|
|
CoordinatorEntity,
|
|
|
|
DataUpdateCoordinator,
|
|
|
|
)
|
|
|
|
|
|
|
|
from . import DeviceState, async_setup_entry_platform
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
config_entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
) -> None:
|
|
|
|
"""Set up tuya sensors dynamically through tuya discovery."""
|
|
|
|
|
|
|
|
def _constructor(device_state: DeviceState) -> list[Entity]:
|
|
|
|
return [
|
|
|
|
Light(
|
|
|
|
device_state.coordinator, device_state.device, device_state.device_info
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
async_setup_entry_platform(hass, config_entry, async_add_entities, _constructor)
|
|
|
|
|
|
|
|
|
2022-03-21 09:22:30 +00:00
|
|
|
class Light(CoordinatorEntity[DataUpdateCoordinator[State]], LightEntity):
|
2021-08-21 07:34:32 +00:00
|
|
|
"""Light device."""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
coordinator: DataUpdateCoordinator[State],
|
|
|
|
device: Device,
|
|
|
|
device_info: DeviceInfo,
|
|
|
|
) -> None:
|
|
|
|
"""Init light entity."""
|
|
|
|
super().__init__(coordinator)
|
|
|
|
self._device = device
|
2022-04-23 19:20:39 +00:00
|
|
|
self._attr_color_mode = ColorMode.BRIGHTNESS
|
|
|
|
self._attr_supported_color_modes = {ColorMode.BRIGHTNESS}
|
2021-08-21 07:34:32 +00:00
|
|
|
self._attr_unique_id = device.address
|
|
|
|
self._attr_device_info = device_info
|
|
|
|
self._attr_name = device_info["name"]
|
|
|
|
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
|
|
"""Turn the light on."""
|
|
|
|
if ATTR_BRIGHTNESS in kwargs:
|
|
|
|
await self._device.send_dim(int(kwargs[ATTR_BRIGHTNESS] * (100.0 / 255.0)))
|
|
|
|
else:
|
|
|
|
if not self.is_on:
|
|
|
|
await self._device.send_command(COMMAND_LIGHT_ON_OFF)
|
|
|
|
self.coordinator.async_set_updated_data(self._device.state)
|
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs) -> None:
|
|
|
|
"""Turn the entity off."""
|
|
|
|
if self.is_on:
|
|
|
|
await self._device.send_command(COMMAND_LIGHT_ON_OFF)
|
|
|
|
self.coordinator.async_set_updated_data(self._device.state)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self) -> bool:
|
|
|
|
"""Return True if entity is on."""
|
|
|
|
if data := self.coordinator.data:
|
|
|
|
return data.light_on
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def brightness(self) -> int | None:
|
|
|
|
"""Return the brightness of this light between 0..255."""
|
|
|
|
if data := self.coordinator.data:
|
|
|
|
return int(data.dim_level * (255.0 / 100.0))
|
|
|
|
return None
|