Add L430P(EU) device fixture (#1607)
Some checks failed
CI / Perform linting checks (3.13) (push) Has been cancelled
CodeQL checks / Analyze (python) (push) Has been cancelled
CI / Python 3.11 on macos-latest (push) Has been cancelled
CI / Python 3.12 on macos-latest (push) Has been cancelled
CI / Python 3.13 on macos-latest (push) Has been cancelled
CI / Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Python 3.11 on windows-latest (push) Has been cancelled
CI / Python 3.12 on windows-latest (push) Has been cancelled
CI / Python 3.13 on windows-latest (push) Has been cancelled
Stale / stale (push) Has been cancelled

Signed-off-by: Lilly Rose Berner <lilly@lostluma.net>
This commit is contained in:
Lilly Rose Berner
2025-11-10 22:17:54 +01:00
committed by GitHub
parent 29007e1079
commit 77d2ca6a83
4 changed files with 373 additions and 3 deletions

View File

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