We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b04fc0 commit 003ad94Copy full SHA for 003ad94
custom_components/lednetwf_ble/models/model_0x62.py
@@ -91,7 +91,8 @@ def __init__(self, manu_data):
91
effect = self.manu_data[15]
92
self.effect = EFFECT_ID_TO_NAME_0x62[effect]
93
self.effect_speed = self.manu_data[17]
94
- self.brightness = int(self.manu_data[18] * 255 // 100)
+ # self.brightness = int(self.manu_data[18] * 255 // 100)
95
+ self.brightness = int(self.manu_data[18])
96
self.color_mode = ColorMode.BRIGHTNESS
97
self.is_on = True
98
0 commit comments