Add KL400, KL50 fixtures (#231)

* Add KL400 fixture

* Add KL400 fixture

* Add KL50 fixture

* tweaks
This commit is contained in:
J. Nick Koston
2021-10-07 12:15:32 -10:00
committed by GitHub
parent 98b4155c11
commit c65705bbbf
4 changed files with 160 additions and 3 deletions

View File

@@ -25,10 +25,19 @@ SUPPORTED_DEVICES = glob.glob(
)
LIGHT_STRIPS = {"KL430"}
VARIABLE_TEMP = {"LB120", "LB130", "KL120", "KL125", "KL130", "KL430", *LIGHT_STRIPS}
LIGHT_STRIPS = {"KL400", "KL430"}
VARIABLE_TEMP = {"LB120", "LB130", "KL120", "KL125", "KL130", "KL430"}
COLOR_BULBS = {"LB130", "KL125", "KL130", *LIGHT_STRIPS}
BULBS = {"KL60", "LB100", "LB110", "KL110", *VARIABLE_TEMP, *COLOR_BULBS, *LIGHT_STRIPS}
BULBS = {
"KL50",
"KL60",
"LB100",
"LB110",
"KL110",
*VARIABLE_TEMP,
*COLOR_BULBS,
*LIGHT_STRIPS,
}
PLUGS = {"HS100", "HS103", "HS105", "HS110", "HS200", "HS210", "EP10", "KP115"}