Add L530EA(EU) device fixture (#1694)
Some checks failed
CI / Perform Lint Checks (3.13) (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
CodeQL Checks / Analyze (python) (push) Has been cancelled
Stale / stale (push) Has been cancelled

This commit is contained in:
ZeliardM
2026-07-05 13:23:28 -04:00
committed by GitHub
parent 1a84242a05
commit 2efdb7b41d
4 changed files with 549 additions and 3 deletions

View File

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