dmx_queue: fix calculation error
This commit is contained in:
parent
4d36ee69d8
commit
d2bc9e26c0
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ class DMXQueue:
|
|||
self._update_all(
|
||||
int(
|
||||
self.config.rainbow.brightness
|
||||
+ ((diff / len(forward + reverse)) * idx)
|
||||
+ ((diff / len(forward)) * idx)
|
||||
),
|
||||
0,
|
||||
50,
|
||||
|
|
Loading…
Reference in a new issue