From 8d6b94949c3f383295f9b886d084eb5c8b4bf707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 20 Feb 2024 16:33:12 +0100 Subject: [PATCH] fixed blackout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index 21e226a..88cea6b 100644 --- a/client/main.py +++ b/client/main.py @@ -96,5 +96,5 @@ if __name__ == "__main__": for pixel in range(LEDS_PER_PIXEL*5, LEDS_PER_PIXEL*6): update_led_strip(tuple(eval(rgb_values_list[5])), pixel, strip) except KeyboardInterrupt: - for led in LED_COUNT: + for led in range(LED_COUNT): update_led_strip((0, 0, 0), led, strip) \ No newline at end of file