From 5071a74fc6a85116d34d78c0fb29d1c64be9a961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 14:05:30 +0100 Subject: [PATCH] debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- client/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index 98125d8..4d9b456 100644 --- a/client/main.py +++ b/client/main.py @@ -63,9 +63,10 @@ def update_led_strip(rgb_values, pixel, strip): def on_message(mqttc, obj, msg): rgb_values_list = eval(msg.payload.decode()) - + print(tuple(eval(rgb_values_list[0]))) for pixel in range(LEDS_PER_PIXEL): + print("Updating pixel "+str(pixel)+" with values: "+tuple(eval(rgb_values_list[0]))) update_led_strip(tuple(eval(rgb_values_list[0])), pixel, strip) for pixel in range(LEDS_PER_PIXEL, LEDS_PER_PIXEL*2):