Skip to content
Snippets Groups Projects
Commit 3fb36b5d authored by q3k's avatar q3k
Browse files

sim: fix leds order

parent 8ead4c86
No related branches found
No related tags found
No related merge requests found
Pipeline #5733 passed
......@@ -4,7 +4,7 @@ import pygame
def set_rgb(ix, r, g, b):
ix = ((39-ix) + 1 + 32)%40;
ix = ((39-ix) - 2 + 32)%40;
r = r << 3
g = g << 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment