Skip to content

Commit

Permalink
Map RGB+CCT to RGB for WLED (#133900)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrazik authored and frenck committed Dec 24, 2024
1 parent 80955ba commit efabb82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion homeassistant/components/wled/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@
ColorMode.COLOR_TEMP,
],
LightCapability.RGB_COLOR | LightCapability.COLOR_TEMPERATURE: [
ColorMode.RGBWW,
# Technically this is RGBWW but wled does not support RGBWW colors (with warm and cold white separately)
# but rather RGB + CCT which does not have a direct mapping in HA
ColorMode.RGB,
],
LightCapability.WHITE_CHANNEL | LightCapability.COLOR_TEMPERATURE: [
ColorMode.COLOR_TEMP,
Expand Down

0 comments on commit efabb82

Please sign in to comment.