Add fixture for L920 (#638)

This commit is contained in:
J. Nick Koston
2024-01-14 12:49:31 -10:00
committed by GitHub
parent aed67dad16
commit eadf1203fc
2 changed files with 400 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ SUPPORTED_DEVICES = SUPPORTED_IOT_DEVICES + SUPPORTED_SMART_DEVICES
# Tapo bulbs
BULBS_SMART_VARIABLE_TEMP = {"L530E"}
BULBS_SMART_LIGHT_STRIP = {"L900-5", "L900-10"}
BULBS_SMART_LIGHT_STRIP = {"L900-5", "L900-10", "L920-5"}
BULBS_SMART_COLOR = {"L530E", *BULBS_SMART_LIGHT_STRIP}
BULBS_SMART_DIMMABLE = {"KS225"}
BULBS_SMART = (
@@ -104,11 +104,11 @@ PLUGS = {
*PLUGS_SMART,
}
STRIPS_IOT = {"HS107", "HS300", "KP303", "KP200", "KP400", "EP40"}
STRIPS_SMART = {} # type: ignore[var-annotated]
STRIPS_SMART: Set[str] = set()
STRIPS = {*STRIPS_IOT, *STRIPS_SMART}
DIMMERS_IOT = {"ES20M", "HS220", "KS220M", "KS230", "KP405"}
DIMMERS_SMART = {} # type: ignore[var-annotated]
DIMMERS_SMART: Set[str] = set()
DIMMERS = {
*DIMMERS_IOT,
*DIMMERS_SMART,