core/homeassistant/components/shelly/light.py

432 lines
14 KiB
Python

"""Light for Shelly."""
from __future__ import annotations
from typing import Any, cast
from aioshelly.block_device import Block
from homeassistant.components.light import (
ATTR_BRIGHTNESS,
ATTR_COLOR_TEMP_KELVIN,
ATTR_EFFECT,
ATTR_RGB_COLOR,
ATTR_RGBW_COLOR,
ATTR_TRANSITION,
ColorMode,
LightEntity,
LightEntityFeature,
brightness_supported,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from .const import (
DUAL_MODE_LIGHT_MODELS,
FIRMWARE_PATTERN,
KELVIN_MAX_VALUE,
KELVIN_MIN_VALUE_COLOR,
KELVIN_MIN_VALUE_WHITE,
LIGHT_TRANSITION_MIN_FIRMWARE_DATE,
LOGGER,
MAX_TRANSITION_TIME,
MODELS_SUPPORTING_LIGHT_TRANSITION,
RGBW_MODELS,
SHBLB_1_RGB_EFFECTS,
STANDARD_RGB_EFFECTS,
)
from .coordinator import ShellyBlockCoordinator, ShellyRpcCoordinator, get_entry_data
from .entity import ShellyBlockEntity, ShellyRpcEntity
from .utils import (
async_remove_shelly_entity,
brightness_to_percentage,
get_device_entry_gen,
get_rpc_key_ids,
is_block_channel_type_light,
is_rpc_channel_type_light,
percentage_to_brightness,
)
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up lights for device."""
if get_device_entry_gen(config_entry) == 2:
return async_setup_rpc_entry(hass, config_entry, async_add_entities)
return async_setup_block_entry(hass, config_entry, async_add_entities)
@callback
def async_setup_block_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up entities for block device."""
coordinator = get_entry_data(hass)[config_entry.entry_id].block
assert coordinator
blocks = []
assert coordinator.device.blocks
for block in coordinator.device.blocks:
if block.type == "light":
blocks.append(block)
elif block.type == "relay":
if not is_block_channel_type_light(
coordinator.device.settings, int(block.channel)
):
continue
blocks.append(block)
unique_id = f"{coordinator.mac}-{block.type}_{block.channel}"
async_remove_shelly_entity(hass, "switch", unique_id)
if not blocks:
return
async_add_entities(BlockShellyLight(coordinator, block) for block in blocks)
@callback
def async_setup_rpc_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up entities for RPC device."""
coordinator = get_entry_data(hass)[config_entry.entry_id].rpc
assert coordinator
switch_key_ids = get_rpc_key_ids(coordinator.device.status, "switch")
switch_ids = []
for id_ in switch_key_ids:
if not is_rpc_channel_type_light(coordinator.device.config, id_):
continue
switch_ids.append(id_)
unique_id = f"{coordinator.mac}-switch:{id_}"
async_remove_shelly_entity(hass, "switch", unique_id)
if switch_ids:
async_add_entities(
RpcShellySwitchAsLight(coordinator, id_) for id_ in switch_ids
)
return
light_key_ids = get_rpc_key_ids(coordinator.device.status, "light")
if light_key_ids:
async_add_entities(RpcShellyLight(coordinator, id_) for id_ in light_key_ids)
class BlockShellyLight(ShellyBlockEntity, LightEntity):
"""Entity that controls a light on block based Shelly devices."""
_attr_supported_color_modes: set[str]
def __init__(self, coordinator: ShellyBlockCoordinator, block: Block) -> None:
"""Initialize light."""
super().__init__(coordinator, block)
self.control_result: dict[str, Any] | None = None
self._attr_supported_color_modes = set()
self._attr_min_color_temp_kelvin = KELVIN_MIN_VALUE_WHITE
self._attr_max_color_temp_kelvin = KELVIN_MAX_VALUE
if hasattr(block, "red") and hasattr(block, "green") and hasattr(block, "blue"):
self._attr_min_color_temp_kelvin = KELVIN_MIN_VALUE_COLOR
if coordinator.model in RGBW_MODELS:
self._attr_supported_color_modes.add(ColorMode.RGBW)
else:
self._attr_supported_color_modes.add(ColorMode.RGB)
if hasattr(block, "colorTemp"):
self._attr_supported_color_modes.add(ColorMode.COLOR_TEMP)
if not self._attr_supported_color_modes:
if hasattr(block, "brightness") or hasattr(block, "gain"):
self._attr_supported_color_modes.add(ColorMode.BRIGHTNESS)
else:
self._attr_supported_color_modes.add(ColorMode.ONOFF)
if hasattr(block, "effect"):
self._attr_supported_features |= LightEntityFeature.EFFECT
if coordinator.model in MODELS_SUPPORTING_LIGHT_TRANSITION:
match = FIRMWARE_PATTERN.search(coordinator.device.settings.get("fw", ""))
if (
match is not None
and int(match[0]) >= LIGHT_TRANSITION_MIN_FIRMWARE_DATE
):
self._attr_supported_features |= LightEntityFeature.TRANSITION
@property
def is_on(self) -> bool:
"""If light is on."""
if self.control_result:
return cast(bool, self.control_result["ison"])
return bool(self.block.output)
@property
def mode(self) -> str:
"""Return the color mode of the light."""
if self.control_result and self.control_result.get("mode"):
return cast(str, self.control_result["mode"])
if hasattr(self.block, "mode"):
return cast(str, self.block.mode)
if (
hasattr(self.block, "red")
and hasattr(self.block, "green")
and hasattr(self.block, "blue")
):
return "color"
return "white"
@property
def brightness(self) -> int:
"""Return the brightness of this light between 0..255."""
if self.mode == "color":
if self.control_result:
return percentage_to_brightness(self.control_result["gain"])
return percentage_to_brightness(cast(int, self.block.gain))
# white mode
if self.control_result:
return percentage_to_brightness(self.control_result["brightness"])
return percentage_to_brightness(cast(int, self.block.brightness))
@property
def color_mode(self) -> ColorMode:
"""Return the color mode of the light."""
if self.mode == "color":
if self.coordinator.model in RGBW_MODELS:
return ColorMode.RGBW
return ColorMode.RGB
if hasattr(self.block, "colorTemp"):
return ColorMode.COLOR_TEMP
if hasattr(self.block, "brightness") or hasattr(self.block, "gain"):
return ColorMode.BRIGHTNESS
return ColorMode.ONOFF
@property
def rgb_color(self) -> tuple[int, int, int]:
"""Return the rgb color value [int, int, int]."""
if self.control_result:
red = self.control_result["red"]
green = self.control_result["green"]
blue = self.control_result["blue"]
else:
red = self.block.red
green = self.block.green
blue = self.block.blue
return (red, green, blue)
@property
def rgbw_color(self) -> tuple[int, int, int, int]:
"""Return the rgbw color value [int, int, int, int]."""
if self.control_result:
white = self.control_result["white"]
else:
white = self.block.white
return (*self.rgb_color, white)
@property
def color_temp_kelvin(self) -> int:
"""Return the CT color value in kelvin."""
color_temp = cast(int, self.block.colorTemp)
if self.control_result:
color_temp = self.control_result["temp"]
return min(
self.max_color_temp_kelvin,
max(self.min_color_temp_kelvin, color_temp),
)
@property
def effect_list(self) -> list[str] | None:
"""Return the list of supported effects."""
if self.coordinator.model == "SHBLB-1":
return list(SHBLB_1_RGB_EFFECTS.values())
return list(STANDARD_RGB_EFFECTS.values())
@property
def effect(self) -> str | None:
"""Return the current effect."""
if self.control_result:
effect_index = self.control_result["effect"]
else:
effect_index = self.block.effect
if self.coordinator.model == "SHBLB-1":
return SHBLB_1_RGB_EFFECTS[effect_index]
return STANDARD_RGB_EFFECTS[effect_index]
async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn on light."""
if self.block.type == "relay":
self.control_result = await self.set_state(turn="on")
self.async_write_ha_state()
return
set_mode = None
supported_color_modes = self._attr_supported_color_modes
params: dict[str, Any] = {"turn": "on"}
if ATTR_TRANSITION in kwargs:
params["transition"] = min(
int(kwargs[ATTR_TRANSITION] * 1000), MAX_TRANSITION_TIME
)
if ATTR_BRIGHTNESS in kwargs and brightness_supported(supported_color_modes):
if hasattr(self.block, "gain"):
params["gain"] = brightness_to_percentage(kwargs[ATTR_BRIGHTNESS])
if hasattr(self.block, "brightness"):
params["brightness"] = brightness_to_percentage(kwargs[ATTR_BRIGHTNESS])
if (
ATTR_COLOR_TEMP_KELVIN in kwargs
and ColorMode.COLOR_TEMP in supported_color_modes
):
# Color temperature change - used only in white mode,
# switch device mode to white
color_temp = kwargs[ATTR_COLOR_TEMP_KELVIN]
set_mode = "white"
params["temp"] = int(
min(
self.max_color_temp_kelvin,
max(self.min_color_temp_kelvin, color_temp),
)
)
if ATTR_RGB_COLOR in kwargs and ColorMode.RGB in supported_color_modes:
# Color channels change - used only in color mode,
# switch device mode to color
set_mode = "color"
(params["red"], params["green"], params["blue"]) = kwargs[ATTR_RGB_COLOR]
if ATTR_RGBW_COLOR in kwargs and ColorMode.RGBW in supported_color_modes:
# Color channels change - used only in color mode,
# switch device mode to color
set_mode = "color"
(params["red"], params["green"], params["blue"], params["white"]) = kwargs[
ATTR_RGBW_COLOR
]
if ATTR_EFFECT in kwargs and ATTR_COLOR_TEMP_KELVIN not in kwargs:
# Color effect change - used only in color mode, switch device mode to color
set_mode = "color"
if self.coordinator.model == "SHBLB-1":
effect_dict = SHBLB_1_RGB_EFFECTS
else:
effect_dict = STANDARD_RGB_EFFECTS
if kwargs[ATTR_EFFECT] in effect_dict.values():
params["effect"] = [
k for k, v in effect_dict.items() if v == kwargs[ATTR_EFFECT]
][0]
else:
LOGGER.error(
"Effect '%s' not supported by device %s",
kwargs[ATTR_EFFECT],
self.coordinator.model,
)
if (
set_mode
and set_mode != self.mode
and self.coordinator.model in DUAL_MODE_LIGHT_MODELS
):
params["mode"] = set_mode
self.control_result = await self.set_state(**params)
self.async_write_ha_state()
async def async_turn_off(self, **kwargs: Any) -> None:
"""Turn off light."""
params: dict[str, Any] = {"turn": "off"}
if ATTR_TRANSITION in kwargs:
params["transition"] = min(
int(kwargs[ATTR_TRANSITION] * 1000), MAX_TRANSITION_TIME
)
self.control_result = await self.set_state(**params)
self.async_write_ha_state()
@callback
def _update_callback(self) -> None:
"""When device updates, clear control & mode result that overrides state."""
self.control_result = None
super()._update_callback()
class RpcShellySwitchAsLight(ShellyRpcEntity, LightEntity):
"""Entity that controls a relay as light on RPC based Shelly devices."""
_attr_color_mode = ColorMode.ONOFF
_attr_supported_color_modes = {ColorMode.ONOFF}
def __init__(self, coordinator: ShellyRpcCoordinator, id_: int) -> None:
"""Initialize light."""
super().__init__(coordinator, f"switch:{id_}")
self._id = id_
@property
def is_on(self) -> bool:
"""If light is on."""
return bool(self.status["output"])
async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn on light."""
await self.call_rpc("Switch.Set", {"id": self._id, "on": True})
async def async_turn_off(self, **kwargs: Any) -> None:
"""Turn off light."""
await self.call_rpc("Switch.Set", {"id": self._id, "on": False})
class RpcShellyLight(ShellyRpcEntity, LightEntity):
"""Entity that controls a light on RPC based Shelly devices."""
_attr_color_mode = ColorMode.BRIGHTNESS
_attr_supported_color_modes = {ColorMode.BRIGHTNESS}
def __init__(self, coordinator: ShellyRpcCoordinator, id_: int) -> None:
"""Initialize light."""
super().__init__(coordinator, f"light:{id_}")
self._id = id_
@property
def is_on(self) -> bool:
"""If light is on."""
return bool(self.status["output"])
@property
def brightness(self) -> int:
"""Return the brightness of this light between 0..255."""
return percentage_to_brightness(self.status["brightness"])
async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn on light."""
params: dict[str, Any] = {"id": self._id, "on": True}
if ATTR_BRIGHTNESS in kwargs:
params["brightness"] = brightness_to_percentage(kwargs[ATTR_BRIGHTNESS])
await self.call_rpc("Light.Set", params)
async def async_turn_off(self, **kwargs: Any) -> None:
"""Turn off light."""
await self.call_rpc("Light.Set", {"id": self._id, "on": False})