diff --git a/pyHS100/smartbulb.py b/pyHS100/smartbulb.py index b1638db..d85073d 100644 --- a/pyHS100/smartbulb.py +++ b/pyHS100/smartbulb.py @@ -145,7 +145,7 @@ def hsv(self, state: Tuple[int, int, int]): light_state = { "hue": state[0], "saturation": state[1], - "brightness": int(state[2] * 100 / 255), + "brightness": state[2], "color_temp": 0 } self.set_light_state(light_state)