From 39751d9783400b4f163731acc8b1c451b6f49e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 15:24:25 +0100 Subject: [PATCH] removed all debuggers 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, 2 deletions(-) diff --git a/client/main.py b/client/main.py index 0cf9c7a..86808ce 100644 --- a/client/main.py +++ b/client/main.py @@ -64,7 +64,6 @@ def update_led_strip(rgb_values, pixel, strip): def on_message(mqttc, obj, msg): global rgb_values_list rgb_values_list = eval(msg.payload.decode()) - print(rgb_values_list) if __name__ == "__main__": @@ -83,7 +82,6 @@ if __name__ == "__main__": rgb_values_list = eval("['[0, 0, 0]', '[0, 0, 0]', '[0, 0, 0]', '[0, 0, 0]', '[0, 0, 0]', '[0, 0, 0]']") mqttc.loop_start() - print("test") while True: for pixel in range(LEDS_PER_PIXEL): update_led_strip(tuple(eval(rgb_values_list[0])), pixel, strip)