Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c503ghosh committed Feb 23, 2024
1 parent 7e18f1b commit 9cc2f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/dirigera_platform/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def turn_on(self, **kwargs):
logger.debug("Request to set color HS")
hs_tuple = kwargs[ATTR_HS_COLOR]
self._color_hue = hs_tuple[0]
self._color_saturation = hs_tuple[1]/100
self._color_saturation = hs_tuple[1]
# Saturation is 0 - 1 at IKEA
self._json_data.set_light_color(self._color_hue, self._color_saturation/100)

Expand Down

0 comments on commit 9cc2f25

Please sign in to comment.