Skip to content

Commit

Permalink
fix: #274 274-bug-can-no-longer-set-color-temperature-on-rgbw-lights
Browse files Browse the repository at this point in the history
  • Loading branch information
JoDehli committed Jun 14, 2024
1 parent dace9c5 commit 5960af8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/loxone/lights/colorpickers.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

class RGBColorPicker(LoxoneEntity, LightEntity):
__color_mode_reported = True
_attr_max_color_temp_kelvin = 2000
_attr_min_color_temp_kelvin = 6500
_attr_max_color_temp_kelvin = 6500
_attr_min_color_temp_kelvin = 2000

_attr_supported_color_modes: set[ColorMode] = {
ColorMode.COLOR_TEMP,
Expand Down

0 comments on commit 5960af8

Please sign in to comment.