Add L535E(EU) 3.0 1.1.8 fixture (#1545)

Add fixture for [Tapo
L535E](https://www.tp-link.com/en/home-networking/smart-bulb/tapo-l535e/v3/)
Support tested also with Home Assistant 2025.5.3 both with
[TP-Link](https://www.home-assistant.io/integrations/tplink) and
[Matter](https://www.home-assistant.io/integrations/matter)
integrations.
This commit is contained in:
Andrea Fantaccione
2025-06-01 12:47:30 +02:00
committed by GitHub
parent d60dedd880
commit a0e4976c89
4 changed files with 564 additions and 3 deletions

View File

@@ -27,9 +27,9 @@ from .fixtureinfo import (
)
# Tapo bulbs
BULBS_SMART_VARIABLE_TEMP = {"L530E", "L930-5"}
BULBS_SMART_VARIABLE_TEMP = {"L530E", "L535E", "L930-5"}
BULBS_SMART_LIGHT_STRIP = {"L900-5", "L900-10", "L920-5", "L930-5"}
BULBS_SMART_COLOR = {"L530E", *BULBS_SMART_LIGHT_STRIP}
BULBS_SMART_COLOR = {"L530E", "L535E", *BULBS_SMART_LIGHT_STRIP}
BULBS_SMART_DIMMABLE = {"L510B", "L510E"}
BULBS_SMART = (
BULBS_SMART_VARIABLE_TEMP.union(BULBS_SMART_COLOR)