Add support for changing the white strip type to flux_led (#63943)

This commit is contained in:
J. Nick Koston 2022-01-12 13:03:09 -10:00 committed by GitHub
parent 5622db10b1
commit 1c6ca908d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 304 additions and 54 deletions

View file

@ -28,6 +28,7 @@ FLUX_COLOR_MODE_TO_HASS: Final = {
FLUX_COLOR_MODE_CCT: COLOR_MODE_COLOR_TEMP,
}
MULTI_BRIGHTNESS_COLOR_MODES: Final = {COLOR_MODE_RGBWW, COLOR_MODE_RGBW}
API: Final = "flux_api"
@ -57,6 +58,8 @@ CONF_MINOR_VERSION: Final = "minor_version"
CONF_REMOTE_ACCESS_ENABLED: Final = "remote_access_enabled"
CONF_REMOTE_ACCESS_HOST: Final = "remote_access_host"
CONF_REMOTE_ACCESS_PORT: Final = "remote_access_port"
CONF_WHITE_CHANNEL_TYPE: Final = "white_channel_type"
TRANSITION_GRADUAL: Final = "gradual"
TRANSITION_JUMP: Final = "jump"