fixed blackout

Signed-off-by: Ebbe Baß <ebbe.bass>
This commit is contained in:
Ebbe Baß
2024-02-20 16:33:12 +01:00
parent 7fae147f14
commit 8d6b94949c
+1 -1
View File
@@ -96,5 +96,5 @@ if __name__ == "__main__":
for pixel in range(LEDS_PER_PIXEL*5, LEDS_PER_PIXEL*6): for pixel in range(LEDS_PER_PIXEL*5, LEDS_PER_PIXEL*6):
update_led_strip(tuple(eval(rgb_values_list[5])), pixel, strip) update_led_strip(tuple(eval(rgb_values_list[5])), pixel, strip)
except KeyboardInterrupt: except KeyboardInterrupt:
for led in LED_COUNT: for led in range(LED_COUNT):
update_led_strip((0, 0, 0), led, strip) update_led_strip((0, 0, 0), led, strip)