From 0eabc279823b8c80e44133c3ca563c52f1795412 Mon Sep 17 00:00:00 2001 From: Kevin Worrel <37058192+dieselrabbit@users.noreply.github.com> Date: Wed, 25 Jan 2023 05:36:15 -0500 Subject: [PATCH] Include all light circuit functions (#86608) fixes undefined --- homeassistant/components/screenlogic/const.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/screenlogic/const.py b/homeassistant/components/screenlogic/const.py index bfa9d09cab8..e4a5ea82186 100644 --- a/homeassistant/components/screenlogic/const.py +++ b/homeassistant/components/screenlogic/const.py @@ -13,4 +13,13 @@ SUPPORTED_COLOR_MODES = { slugify(name): num for num, name in COLOR_MODE.NAME_FOR_NUM.items() } -LIGHT_CIRCUIT_FUNCTIONS = {CIRCUIT_FUNCTION.INTELLIBRITE, CIRCUIT_FUNCTION.LIGHT} +LIGHT_CIRCUIT_FUNCTIONS = { + CIRCUIT_FUNCTION.COLOR_WHEEL, + CIRCUIT_FUNCTION.DIMMER, + CIRCUIT_FUNCTION.INTELLIBRITE, + CIRCUIT_FUNCTION.LIGHT, + CIRCUIT_FUNCTION.MAGICSTREAM, + CIRCUIT_FUNCTION.PHOTONGEN, + CIRCUIT_FUNCTION.SAL_LIGHT, + CIRCUIT_FUNCTION.SAM_LIGHT, +}