Skip to content

Commit

Permalink
Merge pull request #517 from egorash/master
Browse files Browse the repository at this point in the history
Update light.py for strip support
  • Loading branch information
AlexxIT authored Jun 28, 2024
2 parents 2b8790c + caaf9ad commit b6efb9b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_components/yandex_station/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
from .core.entity import YandexEntity
from .hass import hass_utils

INCLUDE_TYPES = ("devices.types.light",)
INCLUDE_TYPES = (
"devices.types.light",
"devices.types.light.strip",
)


async def async_setup_entry(hass, entry, async_add_entities):
Expand Down

1 comment on commit b6efb9b

@vturekhanov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It could be nice to add "devices.types.light.ceiling" also.

Please sign in to comment.