Skip to content

Commit

Permalink
Minor update to led index for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
slabua committed Mar 22, 2024
1 parent 45a4aff commit 5b626d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OLED/picomotodash_oled_ws10d.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def set_np(value):

def set_np_rpm():
upto = RPM_ESTIMATE // 1000
for n in range(22, 37):
if n < upto + 22:
for n in range(24, 37):
if n < upto + 24:
np[n] = (2, 2, 0)
else:
np[n] = (0, 0, 0)
Expand Down

0 comments on commit 5b626d5

Please sign in to comment.