2020-09-24 19:37:34 +00:00
|
|
|
"""Support for Hyperion-NG remotes."""
|
2020-11-30 17:38:52 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2021-04-20 15:40:41 +00:00
|
|
|
from collections.abc import Mapping, Sequence
|
2021-02-08 09:45:46 +00:00
|
|
|
import functools
|
2015-10-17 17:36:52 +00:00
|
|
|
import logging
|
2020-11-30 17:38:52 +00:00
|
|
|
from types import MappingProxyType
|
2021-04-20 15:40:41 +00:00
|
|
|
from typing import Any, Callable
|
2015-10-17 17:36:52 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
from hyperion import client, const
|
2016-09-11 07:24:25 +00:00
|
|
|
|
|
|
|
from homeassistant.components.light import (
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_BRIGHTNESS,
|
|
|
|
ATTR_EFFECT,
|
|
|
|
ATTR_HS_COLOR,
|
|
|
|
SUPPORT_BRIGHTNESS,
|
|
|
|
SUPPORT_COLOR,
|
|
|
|
SUPPORT_EFFECT,
|
2020-04-26 16:49:41 +00:00
|
|
|
LightEntity,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2021-01-29 08:05:00 +00:00
|
|
|
from homeassistant.config_entries import ConfigEntry
|
2021-04-23 08:11:58 +00:00
|
|
|
from homeassistant.core import HomeAssistant, callback
|
2020-11-30 17:38:52 +00:00
|
|
|
from homeassistant.helpers.dispatcher import (
|
|
|
|
async_dispatcher_connect,
|
|
|
|
async_dispatcher_send,
|
|
|
|
)
|
2021-04-30 21:21:39 +00:00
|
|
|
from homeassistant.helpers.entity import DeviceInfo
|
2021-05-04 21:36:48 +00:00
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
2018-03-18 22:00:29 +00:00
|
|
|
import homeassistant.util.color as color_util
|
2015-10-17 17:36:52 +00:00
|
|
|
|
2021-04-13 08:35:38 +00:00
|
|
|
from . import (
|
|
|
|
get_hyperion_device_id,
|
|
|
|
get_hyperion_unique_id,
|
|
|
|
listen_for_instance_updates,
|
|
|
|
)
|
2020-11-30 17:38:52 +00:00
|
|
|
from .const import (
|
2021-03-22 14:59:12 +00:00
|
|
|
CONF_EFFECT_HIDE_LIST,
|
2021-01-27 08:35:13 +00:00
|
|
|
CONF_INSTANCE_CLIENTS,
|
2020-11-30 17:38:52 +00:00
|
|
|
CONF_PRIORITY,
|
|
|
|
DEFAULT_ORIGIN,
|
|
|
|
DEFAULT_PRIORITY,
|
|
|
|
DOMAIN,
|
2021-04-13 08:35:38 +00:00
|
|
|
HYPERION_MANUFACTURER_NAME,
|
|
|
|
HYPERION_MODEL_NAME,
|
2021-01-27 08:35:13 +00:00
|
|
|
NAME_SUFFIX_HYPERION_LIGHT,
|
|
|
|
NAME_SUFFIX_HYPERION_PRIORITY_LIGHT,
|
|
|
|
SIGNAL_ENTITY_REMOVE,
|
2020-11-30 17:38:52 +00:00
|
|
|
TYPE_HYPERION_LIGHT,
|
2021-01-27 08:35:13 +00:00
|
|
|
TYPE_HYPERION_PRIORITY_LIGHT,
|
2020-11-30 17:38:52 +00:00
|
|
|
)
|
|
|
|
|
2015-10-17 17:36:52 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2016-09-11 07:24:25 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
COLOR_BLACK = color_util.COLORS["black"]
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_DEFAULT_COLOR = "default_color"
|
|
|
|
CONF_HDMI_PRIORITY = "hdmi_priority"
|
|
|
|
CONF_EFFECT_LIST = "effect_list"
|
2016-09-11 07:24:25 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
# As we want to preserve brightness control for effects (e.g. to reduce the
|
|
|
|
# brightness for V4L), we need to persist the effect that is in flight, so
|
|
|
|
# subsequent calls to turn_on will know the keep the effect enabled.
|
|
|
|
# Unfortunately the Home Assistant UI does not easily expose a way to remove a
|
|
|
|
# selected effect (there is no 'No Effect' option by default). Instead, we
|
|
|
|
# create a new fake effect ("Solid") that is always selected by default for
|
|
|
|
# showing a solid color. This is the same method used by WLED.
|
|
|
|
KEY_EFFECT_SOLID = "Solid"
|
|
|
|
|
2016-09-11 07:24:25 +00:00
|
|
|
DEFAULT_COLOR = [255, 255, 255]
|
2020-09-24 19:37:34 +00:00
|
|
|
DEFAULT_BRIGHTNESS = 255
|
|
|
|
DEFAULT_EFFECT = KEY_EFFECT_SOLID
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_NAME = "Hyperion"
|
2020-11-30 17:38:52 +00:00
|
|
|
DEFAULT_PORT = const.DEFAULT_PORT_JSON
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
DEFAULT_HDMI_PRIORITY = 880
|
2021-03-18 08:25:40 +00:00
|
|
|
DEFAULT_EFFECT_LIST: list[str] = []
|
2019-07-31 19:25:30 +00:00
|
|
|
|
|
|
|
SUPPORT_HYPERION = SUPPORT_COLOR | SUPPORT_BRIGHTNESS | SUPPORT_EFFECT
|
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
ICON_LIGHTBULB = "mdi:lightbulb"
|
|
|
|
ICON_EFFECT = "mdi:lava-lamp"
|
2020-10-21 09:00:19 +00:00
|
|
|
ICON_EXTERNAL_SOURCE = "mdi:television-ambient-light"
|
2020-09-24 19:37:34 +00:00
|
|
|
|
2016-09-11 07:24:25 +00:00
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
async def async_setup_entry(
|
2021-05-04 21:36:48 +00:00
|
|
|
hass: HomeAssistant,
|
|
|
|
config_entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
2020-11-30 17:38:52 +00:00
|
|
|
) -> bool:
|
|
|
|
"""Set up a Hyperion platform from config entry."""
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
entry_data = hass.data[DOMAIN][config_entry.entry_id]
|
|
|
|
server_id = config_entry.unique_id
|
2021-01-26 20:39:02 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
|
|
|
def instance_add(instance_num: int, instance_name: str) -> None:
|
|
|
|
"""Add entities for a new Hyperion instance."""
|
|
|
|
assert server_id
|
2021-04-13 08:35:38 +00:00
|
|
|
args = (
|
|
|
|
server_id,
|
|
|
|
instance_num,
|
|
|
|
instance_name,
|
|
|
|
config_entry.options,
|
|
|
|
entry_data[CONF_INSTANCE_CLIENTS][instance_num],
|
|
|
|
)
|
2021-01-27 08:35:13 +00:00
|
|
|
async_add_entities(
|
|
|
|
[
|
2021-04-13 08:35:38 +00:00
|
|
|
HyperionLight(*args),
|
|
|
|
HyperionPriorityLight(*args),
|
2021-01-27 08:35:13 +00:00
|
|
|
]
|
|
|
|
)
|
2020-11-30 17:38:52 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
|
|
|
def instance_remove(instance_num: int) -> None:
|
|
|
|
"""Remove entities for an old Hyperion instance."""
|
|
|
|
assert server_id
|
|
|
|
for light_type in LIGHT_TYPES:
|
|
|
|
async_dispatcher_send(
|
|
|
|
hass,
|
|
|
|
SIGNAL_ENTITY_REMOVE.format(
|
|
|
|
get_hyperion_unique_id(server_id, instance_num, light_type)
|
|
|
|
),
|
|
|
|
)
|
2020-11-30 17:38:52 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
listen_for_instance_updates(hass, config_entry, instance_add, instance_remove)
|
2020-11-30 17:38:52 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
class HyperionBaseLight(LightEntity):
|
|
|
|
"""A Hyperion light base class."""
|
2015-10-17 17:36:52 +00:00
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
2021-04-13 08:35:38 +00:00
|
|
|
server_id: str,
|
|
|
|
instance_num: int,
|
|
|
|
instance_name: str,
|
2020-11-30 17:38:52 +00:00
|
|
|
options: MappingProxyType[str, Any],
|
|
|
|
hyperion_client: client.HyperionClient,
|
|
|
|
) -> None:
|
2016-03-07 21:08:21 +00:00
|
|
|
"""Initialize the light."""
|
2021-04-13 08:35:38 +00:00
|
|
|
self._unique_id = self._compute_unique_id(server_id, instance_num)
|
|
|
|
self._name = self._compute_name(instance_name)
|
|
|
|
self._device_id = get_hyperion_device_id(server_id, instance_num)
|
|
|
|
self._instance_name = instance_name
|
2020-11-30 17:38:52 +00:00
|
|
|
self._options = options
|
2020-09-24 19:37:34 +00:00
|
|
|
self._client = hyperion_client
|
|
|
|
|
|
|
|
# Active state representing the Hyperion instance.
|
2020-11-30 17:38:52 +00:00
|
|
|
self._brightness: int = 255
|
|
|
|
self._rgb_color: Sequence[int] = DEFAULT_COLOR
|
|
|
|
self._effect: str = KEY_EFFECT_SOLID
|
|
|
|
|
2021-03-18 08:25:40 +00:00
|
|
|
self._static_effect_list: list[str] = [KEY_EFFECT_SOLID]
|
2021-01-27 08:35:13 +00:00
|
|
|
if self._support_external_effects:
|
2021-04-19 21:46:18 +00:00
|
|
|
self._static_effect_list += [
|
|
|
|
const.KEY_COMPONENTID_TO_NAME[component]
|
|
|
|
for component in const.KEY_COMPONENTID_EXTERNAL_SOURCES
|
|
|
|
]
|
2021-03-18 08:25:40 +00:00
|
|
|
self._effect_list: list[str] = self._static_effect_list[:]
|
2021-01-27 08:35:13 +00:00
|
|
|
|
2021-03-18 08:25:40 +00:00
|
|
|
self._client_callbacks: Mapping[str, Callable[[dict[str, Any]], None]] = {
|
2021-01-27 08:35:13 +00:00
|
|
|
f"{const.KEY_ADJUSTMENT}-{const.KEY_UPDATE}": self._update_adjustment,
|
|
|
|
f"{const.KEY_COMPONENTS}-{const.KEY_UPDATE}": self._update_components,
|
|
|
|
f"{const.KEY_EFFECTS}-{const.KEY_UPDATE}": self._update_effect_list,
|
|
|
|
f"{const.KEY_PRIORITIES}-{const.KEY_UPDATE}": self._update_priorities,
|
|
|
|
f"{const.KEY_CLIENT}-{const.KEY_UPDATE}": self._update_client,
|
|
|
|
}
|
|
|
|
|
2021-04-13 08:35:38 +00:00
|
|
|
def _compute_unique_id(self, server_id: str, instance_num: int) -> str:
|
|
|
|
"""Compute a unique id for this instance."""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def _compute_name(self, instance_name: str) -> str:
|
|
|
|
"""Compute the name of the light."""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@property
|
|
|
|
def entity_registry_enabled_default(self) -> bool:
|
|
|
|
"""Whether or not the entity is enabled by default."""
|
|
|
|
return True
|
2020-09-24 19:37:34 +00:00
|
|
|
|
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def should_poll(self) -> bool:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Return whether or not this entity should be polled."""
|
|
|
|
return False
|
2015-10-17 17:36:52 +00:00
|
|
|
|
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def name(self) -> str:
|
2017-07-09 22:06:31 +00:00
|
|
|
"""Return the name of the light."""
|
2015-10-17 17:36:52 +00:00
|
|
|
return self._name
|
|
|
|
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def brightness(self) -> int:
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
"""Return the brightness of this light between 0..255."""
|
|
|
|
return self._brightness
|
|
|
|
|
2015-10-17 17:36:52 +00:00
|
|
|
@property
|
2021-03-18 08:25:40 +00:00
|
|
|
def hs_color(self) -> tuple[float, float]:
|
2018-03-18 22:00:29 +00:00
|
|
|
"""Return last color value set."""
|
|
|
|
return color_util.color_RGB_to_hs(*self._rgb_color)
|
2015-10-17 17:36:52 +00:00
|
|
|
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def icon(self) -> str:
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
"""Return state specific icon."""
|
2021-01-26 09:46:54 +00:00
|
|
|
if self.is_on:
|
2021-04-19 21:46:18 +00:00
|
|
|
if (
|
|
|
|
self.effect in const.KEY_COMPONENTID_FROM_NAME
|
|
|
|
and const.KEY_COMPONENTID_FROM_NAME[self.effect]
|
|
|
|
in const.KEY_COMPONENTID_EXTERNAL_SOURCES
|
|
|
|
):
|
2021-01-26 09:46:54 +00:00
|
|
|
return ICON_EXTERNAL_SOURCE
|
|
|
|
if self.effect != KEY_EFFECT_SOLID:
|
|
|
|
return ICON_EFFECT
|
|
|
|
return ICON_LIGHTBULB
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
|
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def effect(self) -> str:
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
"""Return the current effect."""
|
|
|
|
return self._effect
|
|
|
|
|
|
|
|
@property
|
2021-03-18 08:25:40 +00:00
|
|
|
def effect_list(self) -> list[str]:
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
"""Return the list of supported effects."""
|
2021-01-27 08:35:13 +00:00
|
|
|
return self._effect_list
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
|
2016-08-16 06:07:07 +00:00
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def supported_features(self) -> int:
|
2016-08-16 06:07:07 +00:00
|
|
|
"""Flag supported features."""
|
|
|
|
return SUPPORT_HYPERION
|
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def available(self) -> bool:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Return server availability."""
|
2020-11-30 17:38:52 +00:00
|
|
|
return bool(self._client.has_loaded_state)
|
2020-09-24 19:37:34 +00:00
|
|
|
|
|
|
|
@property
|
2020-11-30 17:38:52 +00:00
|
|
|
def unique_id(self) -> str:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Return a unique id for this instance."""
|
2020-11-30 17:38:52 +00:00
|
|
|
return self._unique_id
|
|
|
|
|
2021-04-13 08:35:38 +00:00
|
|
|
@property
|
2021-04-30 21:21:39 +00:00
|
|
|
def device_info(self) -> DeviceInfo:
|
2021-04-13 08:35:38 +00:00
|
|
|
"""Return device information."""
|
|
|
|
return {
|
|
|
|
"identifiers": {(DOMAIN, self._device_id)},
|
|
|
|
"name": self._instance_name,
|
|
|
|
"manufacturer": HYPERION_MANUFACTURER_NAME,
|
|
|
|
"model": HYPERION_MODEL_NAME,
|
|
|
|
}
|
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
def _get_option(self, key: str) -> Any:
|
|
|
|
"""Get a value from the provided options."""
|
2021-03-22 14:59:12 +00:00
|
|
|
defaults = {
|
|
|
|
CONF_PRIORITY: DEFAULT_PRIORITY,
|
|
|
|
CONF_EFFECT_HIDE_LIST: [],
|
|
|
|
}
|
2020-11-30 17:38:52 +00:00
|
|
|
return self._options.get(key, defaults[key])
|
2020-09-24 19:37:34 +00:00
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Turn on the light."""
|
2020-09-24 19:37:34 +00:00
|
|
|
# == Get key parameters ==
|
2020-12-02 18:40:49 +00:00
|
|
|
if ATTR_EFFECT not in kwargs and ATTR_HS_COLOR in kwargs:
|
|
|
|
effect = KEY_EFFECT_SOLID
|
|
|
|
else:
|
|
|
|
effect = kwargs.get(ATTR_EFFECT, self._effect)
|
2020-11-30 17:38:52 +00:00
|
|
|
rgb_color: Sequence[int]
|
2018-03-18 22:00:29 +00:00
|
|
|
if ATTR_HS_COLOR in kwargs:
|
|
|
|
rgb_color = color_util.color_hs_to_RGB(*kwargs[ATTR_HS_COLOR])
|
2016-07-28 04:11:12 +00:00
|
|
|
else:
|
2020-09-24 19:37:34 +00:00
|
|
|
rgb_color = self._rgb_color
|
|
|
|
|
|
|
|
# == Set brightness ==
|
2021-01-26 09:45:41 +00:00
|
|
|
if ATTR_BRIGHTNESS in kwargs:
|
|
|
|
brightness = kwargs[ATTR_BRIGHTNESS]
|
2021-03-01 17:10:28 +00:00
|
|
|
for item in self._client.adjustment or []:
|
2021-03-27 10:30:29 +00:00
|
|
|
if (
|
|
|
|
const.KEY_ID in item
|
|
|
|
and not await self._client.async_send_set_adjustment(
|
2021-01-26 09:45:41 +00:00
|
|
|
**{
|
|
|
|
const.KEY_ADJUSTMENT: {
|
|
|
|
const.KEY_BRIGHTNESS: int(
|
|
|
|
round((float(brightness) * 100) / 255)
|
|
|
|
),
|
|
|
|
const.KEY_ID: item[const.KEY_ID],
|
|
|
|
}
|
|
|
|
}
|
2021-03-27 10:30:29 +00:00
|
|
|
)
|
|
|
|
):
|
|
|
|
return
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
# == Set an external source
|
2021-01-27 08:35:13 +00:00
|
|
|
if (
|
|
|
|
effect
|
|
|
|
and self._support_external_effects
|
2021-04-19 21:46:18 +00:00
|
|
|
and (
|
|
|
|
effect in const.KEY_COMPONENTID_EXTERNAL_SOURCES
|
|
|
|
or effect in const.KEY_COMPONENTID_FROM_NAME
|
|
|
|
)
|
2021-01-27 08:35:13 +00:00
|
|
|
):
|
2021-04-19 21:46:18 +00:00
|
|
|
if effect in const.KEY_COMPONENTID_FROM_NAME:
|
|
|
|
component = const.KEY_COMPONENTID_FROM_NAME[effect]
|
|
|
|
else:
|
|
|
|
_LOGGER.warning(
|
|
|
|
"Use of Hyperion effect '%s' is deprecated and will be removed "
|
|
|
|
"in a future release. Please use '%s' instead",
|
|
|
|
effect,
|
|
|
|
const.KEY_COMPONENTID_TO_NAME[effect],
|
|
|
|
)
|
|
|
|
component = effect
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
# Clear any color/effect.
|
|
|
|
if not await self._client.async_send_clear(
|
2020-11-30 17:38:52 +00:00
|
|
|
**{const.KEY_PRIORITY: self._get_option(CONF_PRIORITY)}
|
2020-09-24 19:37:34 +00:00
|
|
|
):
|
|
|
|
return
|
|
|
|
|
|
|
|
# Turn off all external sources, except the intended.
|
|
|
|
for key in const.KEY_COMPONENTID_EXTERNAL_SOURCES:
|
|
|
|
if not await self._client.async_send_set_component(
|
|
|
|
**{
|
|
|
|
const.KEY_COMPONENTSTATE: {
|
|
|
|
const.KEY_COMPONENT: key,
|
2021-04-19 21:46:18 +00:00
|
|
|
const.KEY_STATE: component == key,
|
2020-09-24 19:37:34 +00:00
|
|
|
}
|
2019-07-31 19:25:30 +00:00
|
|
|
}
|
2020-09-24 19:37:34 +00:00
|
|
|
):
|
|
|
|
return
|
Hyperion: Add brightness, HDMI and effect support (#11543)
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
* Hyperion: Add brightness, HDMI and effect support
- added brightness support to dim the hyperion light
- changed the "OFF" command to set the color to [0,0,0] after clearing all priorities.
This is neccesary to keep the light turned off when an HDMI grabber is used for ambilight with hyperion.
- added HDMI ambilight mode recognition and control.
by setting the "hdmi_priority" in your "configuration.yaml" file (defaults to 880), home assistant will now be able to recognize when the hyperion light is in HDMI ambilight mode and will change its icon to an HDMI symbol and set the status to ON.
Switching the hyperion light to HDMI ambilight mode can be done through the effect option (clears all priorities such that the HDMI grabber remains).
- added effect support for the default effects of hyperion, a custom list can be defined in the "configuration.yaml" file by using the "effect_list" option.
- fixed some style issues with too long lines
* Hyperion: Add brightness, HDMI and effect support
- fixed some more indentation style issues
* Hyperion: Add brightness, HDMI and effect support
- yet more fixed visuel indent issues
* Hyperion: Add brightness, HDMI and effect support
- more visuel indents
* Hyperion: Add brightness, HDMI and effect support
- fixed invalid variable "A"
* Hyperion: Add brightness, HDMI and effect support
- remove unnececary brackets
- specify specific exceptions
* correct changing state holding attributes during a service method
Proccesed the comments of @MartinHjelmare: https://github.com/home-assistant/home-assistant/pull/11543#pullrequestreview-88328659
* indent correction
corrected tab instead of 4 spaces
* Hyperion: Add brightness, HDMI and effect support
- changed 'none' to None
- renamed "self._skip_check" to "self._skip_update"
* Add brightness, HDMI and effect support
changed checking if a list is empty from "list == []" to "not list"
2018-01-13 20:06:34 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
# == Set an effect
|
|
|
|
elif effect and effect != KEY_EFFECT_SOLID:
|
|
|
|
# This call should not be necessary, but without it there is no priorities-update issued:
|
|
|
|
# https://github.com/hyperion-project/hyperion.ng/issues/992
|
|
|
|
if not await self._client.async_send_clear(
|
2020-11-30 17:38:52 +00:00
|
|
|
**{const.KEY_PRIORITY: self._get_option(CONF_PRIORITY)}
|
2020-09-24 19:37:34 +00:00
|
|
|
):
|
|
|
|
return
|
2015-10-17 17:36:52 +00:00
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
if not await self._client.async_send_set_effect(
|
|
|
|
**{
|
2020-11-30 17:38:52 +00:00
|
|
|
const.KEY_PRIORITY: self._get_option(CONF_PRIORITY),
|
2020-09-24 19:37:34 +00:00
|
|
|
const.KEY_EFFECT: {const.KEY_NAME: effect},
|
|
|
|
const.KEY_ORIGIN: DEFAULT_ORIGIN,
|
|
|
|
}
|
|
|
|
):
|
|
|
|
return
|
|
|
|
# == Set a color
|
|
|
|
else:
|
|
|
|
if not await self._client.async_send_set_color(
|
|
|
|
**{
|
2020-11-30 17:38:52 +00:00
|
|
|
const.KEY_PRIORITY: self._get_option(CONF_PRIORITY),
|
2020-09-24 19:37:34 +00:00
|
|
|
const.KEY_COLOR: rgb_color,
|
|
|
|
const.KEY_ORIGIN: DEFAULT_ORIGIN,
|
|
|
|
}
|
|
|
|
):
|
|
|
|
return
|
2015-10-17 17:36:52 +00:00
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
def _set_internal_state(
|
|
|
|
self,
|
2021-03-18 08:25:40 +00:00
|
|
|
brightness: int | None = None,
|
|
|
|
rgb_color: Sequence[int] | None = None,
|
|
|
|
effect: str | None = None,
|
2020-11-30 17:38:52 +00:00
|
|
|
) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Set the internal state."""
|
|
|
|
if brightness is not None:
|
|
|
|
self._brightness = brightness
|
|
|
|
if rgb_color is not None:
|
|
|
|
self._rgb_color = rgb_color
|
|
|
|
if effect is not None:
|
|
|
|
self._effect = effect
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2021-03-18 08:25:40 +00:00
|
|
|
def _update_components(self, _: dict[str, Any] | None = None) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update Hyperion components."""
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2021-03-18 08:25:40 +00:00
|
|
|
def _update_adjustment(self, _: dict[str, Any] | None = None) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update Hyperion adjustments."""
|
|
|
|
if self._client.adjustment:
|
|
|
|
brightness_pct = self._client.adjustment[0].get(
|
|
|
|
const.KEY_BRIGHTNESS, DEFAULT_BRIGHTNESS
|
|
|
|
)
|
|
|
|
if brightness_pct < 0 or brightness_pct > 100:
|
|
|
|
return
|
|
|
|
self._set_internal_state(
|
|
|
|
brightness=int(round((brightness_pct * 255) / float(100)))
|
|
|
|
)
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2021-03-18 08:25:40 +00:00
|
|
|
def _update_priorities(self, _: dict[str, Any] | None = None) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update Hyperion priorities."""
|
2021-01-27 08:35:13 +00:00
|
|
|
priority = self._get_priority_entry_that_dictates_state()
|
|
|
|
if priority and self._allow_priority_update(priority):
|
|
|
|
componentid = priority.get(const.KEY_COMPONENTID)
|
|
|
|
if (
|
|
|
|
self._support_external_effects
|
|
|
|
and componentid in const.KEY_COMPONENTID_EXTERNAL_SOURCES
|
2021-04-19 21:46:18 +00:00
|
|
|
and componentid in const.KEY_COMPONENTID_TO_NAME
|
2021-01-27 08:35:13 +00:00
|
|
|
):
|
2021-04-19 21:46:18 +00:00
|
|
|
self._set_internal_state(
|
|
|
|
rgb_color=DEFAULT_COLOR,
|
|
|
|
effect=const.KEY_COMPONENTID_TO_NAME[componentid],
|
|
|
|
)
|
2020-09-24 19:37:34 +00:00
|
|
|
elif componentid == const.KEY_COMPONENTID_EFFECT:
|
|
|
|
# Owner is the effect name.
|
|
|
|
# See: https://docs.hyperion-project.org/en/json/ServerInfo.html#priorities
|
|
|
|
self._set_internal_state(
|
2021-01-27 08:35:13 +00:00
|
|
|
rgb_color=DEFAULT_COLOR, effect=priority[const.KEY_OWNER]
|
2020-09-24 19:37:34 +00:00
|
|
|
)
|
|
|
|
elif componentid == const.KEY_COMPONENTID_COLOR:
|
|
|
|
self._set_internal_state(
|
2021-01-27 08:35:13 +00:00
|
|
|
rgb_color=priority[const.KEY_VALUE][const.KEY_RGB],
|
2020-09-24 19:37:34 +00:00
|
|
|
effect=KEY_EFFECT_SOLID,
|
|
|
|
)
|
2020-12-02 18:40:49 +00:00
|
|
|
self.async_write_ha_state()
|
2020-09-24 19:37:34 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2021-03-18 08:25:40 +00:00
|
|
|
def _update_effect_list(self, _: dict[str, Any] | None = None) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update Hyperion effects."""
|
|
|
|
if not self._client.effects:
|
|
|
|
return
|
2021-03-18 08:25:40 +00:00
|
|
|
effect_list: list[str] = []
|
2021-03-22 14:59:12 +00:00
|
|
|
hide_effects = self._get_option(CONF_EFFECT_HIDE_LIST)
|
|
|
|
|
2020-09-24 19:37:34 +00:00
|
|
|
for effect in self._client.effects or []:
|
|
|
|
if const.KEY_NAME in effect:
|
2021-03-22 14:59:12 +00:00
|
|
|
effect_name = effect[const.KEY_NAME]
|
|
|
|
if effect_name not in hide_effects:
|
|
|
|
effect_list.append(effect_name)
|
|
|
|
|
|
|
|
self._effect_list = [
|
|
|
|
effect for effect in self._static_effect_list if effect not in hide_effects
|
|
|
|
] + effect_list
|
|
|
|
self.async_write_ha_state()
|
2020-09-24 19:37:34 +00:00
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2020-11-30 17:38:52 +00:00
|
|
|
def _update_full_state(self) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update full Hyperion state."""
|
|
|
|
self._update_adjustment()
|
|
|
|
self._update_priorities()
|
|
|
|
self._update_effect_list()
|
|
|
|
|
|
|
|
_LOGGER.debug(
|
|
|
|
"Hyperion full state update: On=%s,Brightness=%i,Effect=%s "
|
|
|
|
"(%i effects total),Color=%s",
|
|
|
|
self.is_on,
|
|
|
|
self._brightness,
|
|
|
|
self._effect,
|
|
|
|
len(self._effect_list),
|
|
|
|
self._rgb_color,
|
|
|
|
)
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@callback
|
2021-03-18 08:25:40 +00:00
|
|
|
def _update_client(self, _: dict[str, Any] | None = None) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Update client connection state."""
|
|
|
|
self.async_write_ha_state()
|
|
|
|
|
2020-11-30 17:38:52 +00:00
|
|
|
async def async_added_to_hass(self) -> None:
|
2020-09-24 19:37:34 +00:00
|
|
|
"""Register callbacks when entity added to hass."""
|
2020-11-30 17:38:52 +00:00
|
|
|
self.async_on_remove(
|
|
|
|
async_dispatcher_connect(
|
|
|
|
self.hass,
|
2021-04-13 08:35:38 +00:00
|
|
|
SIGNAL_ENTITY_REMOVE.format(self.unique_id),
|
2021-02-08 09:45:46 +00:00
|
|
|
functools.partial(self.async_remove, force_remove=True),
|
2020-11-30 17:38:52 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
self._client.add_callbacks(self._client_callbacks)
|
2020-09-24 19:37:34 +00:00
|
|
|
|
|
|
|
# Load initial state.
|
|
|
|
self._update_full_state()
|
2020-11-30 17:38:52 +00:00
|
|
|
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Cleanup prior to hass removal."""
|
|
|
|
self._client.remove_callbacks(self._client_callbacks)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _support_external_effects(self) -> bool:
|
|
|
|
"""Whether or not to support setting external effects from the light entity."""
|
|
|
|
return True
|
|
|
|
|
2021-03-18 08:25:40 +00:00
|
|
|
def _get_priority_entry_that_dictates_state(self) -> dict[str, Any] | None:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Get the relevant Hyperion priority entry to consider."""
|
|
|
|
# Return the visible priority (whether or not it is the HA priority).
|
2021-03-01 17:10:28 +00:00
|
|
|
|
|
|
|
# Explicit type specifier to ensure this works when the underlying (typed)
|
|
|
|
# library is installed along with the tests. Casts would trigger a
|
|
|
|
# redundant-cast warning in this case.
|
2021-03-18 08:25:40 +00:00
|
|
|
priority: dict[str, Any] | None = self._client.visible_priority
|
2021-03-01 17:10:28 +00:00
|
|
|
return priority
|
2021-01-27 08:35:13 +00:00
|
|
|
|
|
|
|
# pylint: disable=no-self-use
|
2021-03-18 08:25:40 +00:00
|
|
|
def _allow_priority_update(self, priority: dict[str, Any] | None = None) -> bool:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Determine whether to allow a priority to update internal state."""
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class HyperionLight(HyperionBaseLight):
|
|
|
|
"""A Hyperion light that acts in absolute (vs priority) manner.
|
|
|
|
|
|
|
|
Light state is the absolute Hyperion component state (e.g. LED device on/off) rather
|
|
|
|
than color based at a particular priority, and the 'winning' priority determines
|
|
|
|
shown state rather than exclusively the HA priority.
|
|
|
|
"""
|
|
|
|
|
2021-04-13 08:35:38 +00:00
|
|
|
def _compute_unique_id(self, server_id: str, instance_num: int) -> str:
|
|
|
|
"""Compute a unique id for this instance."""
|
|
|
|
return get_hyperion_unique_id(server_id, instance_num, TYPE_HYPERION_LIGHT)
|
|
|
|
|
|
|
|
def _compute_name(self, instance_name: str) -> str:
|
|
|
|
"""Compute the name of the light."""
|
|
|
|
return f"{instance_name} {NAME_SUFFIX_HYPERION_LIGHT}".strip()
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@property
|
|
|
|
def is_on(self) -> bool:
|
|
|
|
"""Return true if light is on."""
|
|
|
|
return (
|
|
|
|
bool(self._client.is_on())
|
|
|
|
and self._get_priority_entry_that_dictates_state() is not None
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
|
|
"""Turn on the light."""
|
|
|
|
# == Turn device on ==
|
|
|
|
# Turn on both ALL (Hyperion itself) and LEDDEVICE. It would be
|
|
|
|
# preferable to enable LEDDEVICE after the settings (e.g. brightness,
|
|
|
|
# color, effect), but this is not possible due to:
|
|
|
|
# https://github.com/hyperion-project/hyperion.ng/issues/967
|
|
|
|
if not bool(self._client.is_on()):
|
|
|
|
for component in [
|
|
|
|
const.KEY_COMPONENTID_ALL,
|
|
|
|
const.KEY_COMPONENTID_LEDDEVICE,
|
|
|
|
]:
|
|
|
|
if not await self._client.async_send_set_component(
|
|
|
|
**{
|
|
|
|
const.KEY_COMPONENTSTATE: {
|
|
|
|
const.KEY_COMPONENT: component,
|
|
|
|
const.KEY_STATE: True,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
):
|
|
|
|
return
|
|
|
|
|
|
|
|
# Turn on the relevant Hyperion priority as usual.
|
|
|
|
await super().async_turn_on(**kwargs)
|
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
|
|
"""Turn off the light."""
|
|
|
|
if not await self._client.async_send_set_component(
|
|
|
|
**{
|
|
|
|
const.KEY_COMPONENTSTATE: {
|
|
|
|
const.KEY_COMPONENT: const.KEY_COMPONENTID_LEDDEVICE,
|
|
|
|
const.KEY_STATE: False,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
):
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
class HyperionPriorityLight(HyperionBaseLight):
|
|
|
|
"""A Hyperion light that only acts on a single Hyperion priority."""
|
|
|
|
|
2021-04-13 08:35:38 +00:00
|
|
|
def _compute_unique_id(self, server_id: str, instance_num: int) -> str:
|
|
|
|
"""Compute a unique id for this instance."""
|
|
|
|
return get_hyperion_unique_id(
|
|
|
|
server_id, instance_num, TYPE_HYPERION_PRIORITY_LIGHT
|
|
|
|
)
|
|
|
|
|
|
|
|
def _compute_name(self, instance_name: str) -> str:
|
|
|
|
"""Compute the name of the light."""
|
|
|
|
return f"{instance_name} {NAME_SUFFIX_HYPERION_PRIORITY_LIGHT}".strip()
|
|
|
|
|
2021-01-27 08:35:13 +00:00
|
|
|
@property
|
|
|
|
def entity_registry_enabled_default(self) -> bool:
|
|
|
|
"""Whether or not the entity is enabled by default."""
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self) -> bool:
|
|
|
|
"""Return true if light is on."""
|
|
|
|
priority = self._get_priority_entry_that_dictates_state()
|
|
|
|
return (
|
|
|
|
priority is not None
|
|
|
|
and not HyperionPriorityLight._is_priority_entry_black(priority)
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
|
|
"""Turn off the light."""
|
|
|
|
if not await self._client.async_send_clear(
|
|
|
|
**{const.KEY_PRIORITY: self._get_option(CONF_PRIORITY)}
|
|
|
|
):
|
|
|
|
return
|
|
|
|
await self._client.async_send_set_color(
|
|
|
|
**{
|
|
|
|
const.KEY_PRIORITY: self._get_option(CONF_PRIORITY),
|
|
|
|
const.KEY_COLOR: COLOR_BLACK,
|
|
|
|
const.KEY_ORIGIN: DEFAULT_ORIGIN,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _support_external_effects(self) -> bool:
|
|
|
|
"""Whether or not to support setting external effects from the light entity."""
|
|
|
|
return False
|
|
|
|
|
2021-03-18 08:25:40 +00:00
|
|
|
def _get_priority_entry_that_dictates_state(self) -> dict[str, Any] | None:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Get the relevant Hyperion priority entry to consider."""
|
|
|
|
# Return the active priority (if any) at the configured HA priority.
|
|
|
|
for candidate in self._client.priorities or []:
|
|
|
|
if const.KEY_PRIORITY not in candidate:
|
|
|
|
continue
|
|
|
|
if candidate[const.KEY_PRIORITY] == self._get_option(
|
|
|
|
CONF_PRIORITY
|
|
|
|
) and candidate.get(const.KEY_ACTIVE, False):
|
2021-03-01 17:10:28 +00:00
|
|
|
# Explicit type specifier to ensure this works when the underlying
|
|
|
|
# (typed) library is installed along with the tests. Casts would trigger
|
|
|
|
# a redundant-cast warning in this case.
|
2021-03-18 08:25:40 +00:00
|
|
|
output: dict[str, Any] = candidate
|
2021-03-01 17:10:28 +00:00
|
|
|
return output
|
2021-01-27 08:35:13 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
2021-03-18 08:25:40 +00:00
|
|
|
def _is_priority_entry_black(cls, priority: dict[str, Any] | None) -> bool:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Determine if a given priority entry is the color black."""
|
2021-04-19 21:46:18 +00:00
|
|
|
if (
|
|
|
|
priority
|
|
|
|
and priority.get(const.KEY_COMPONENTID) == const.KEY_COMPONENTID_COLOR
|
|
|
|
):
|
2021-01-27 08:35:13 +00:00
|
|
|
rgb_color = priority.get(const.KEY_VALUE, {}).get(const.KEY_RGB)
|
|
|
|
if rgb_color is not None and tuple(rgb_color) == COLOR_BLACK:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2021-03-18 08:25:40 +00:00
|
|
|
def _allow_priority_update(self, priority: dict[str, Any] | None = None) -> bool:
|
2021-01-27 08:35:13 +00:00
|
|
|
"""Determine whether to allow a Hyperion priority to update entity attributes."""
|
|
|
|
# Black is treated as 'off' (and Home Assistant does not support selecting black
|
|
|
|
# from the color selector). Do not set our internal attributes if the priority is
|
|
|
|
# 'off' (i.e. if black is active). Do this to ensure it seamlessly turns back on
|
|
|
|
# at the correct prior color on the next 'on' call.
|
|
|
|
return not HyperionPriorityLight._is_priority_entry_black(priority)
|
|
|
|
|
|
|
|
|
|
|
|
LIGHT_TYPES = {
|
|
|
|
TYPE_HYPERION_LIGHT: HyperionLight,
|
|
|
|
TYPE_HYPERION_PRIORITY_LIGHT: HyperionPriorityLight,
|
|
|
|
}
|