Skip to content

Commit

Permalink
fix: increase attempts to reset LEDs after backlight changes
Browse files Browse the repository at this point in the history
The underlying firmware bug sometimes triggers later than expected.
  • Loading branch information
kmontag committed Dec 11, 2024
1 parent de12e1d commit 63c9fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control_surface/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def refresh_state_except_backlight():
task.sequence(
task.run(refresh_state_except_backlight), task.wait(0.2)
)
for _ in range(10)
for _ in range(20)
],
)
)
Expand Down

0 comments on commit 63c9fd6

Please sign in to comment.