From 4d914ea7a800068cc219febf6c0e5cae5df971b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 13:30:17 +0100 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- client/main.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/client/main.py b/client/main.py index 66e26cc..dcf6bb7 100644 --- a/client/main.py +++ b/client/main.py @@ -64,23 +64,24 @@ def update_led_strip(rgb_values, pixel, strip): def on_message(mqttc, obj, msg): rgb_values_list = msg.payload.decode() + print(list(*rgb_values_list[0])) for pixel in range(LEDS_PER_PIXEL): - update_led_strip(list(*rgb_values_list[0]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[0]), pixel, strip) for pixel in range(LEDS_PER_PIXEL, LEDS_PER_PIXEL*2): - update_led_strip(list(*rgb_values_list[1]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[1]), pixel, strip) for pixel in range(LEDS_PER_PIXEL*2, LEDS_PER_PIXEL*3): - update_led_strip(list(*rgb_values_list[2]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[2]), pixel, strip) for pixel in range(LEDS_PER_PIXEL*3, LEDS_PER_PIXEL*4): - update_led_strip(list(*rgb_values_list[3]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[3]), pixel, strip) for pixel in range(LEDS_PER_PIXEL*4, LEDS_PER_PIXEL*5): - update_led_strip(list(*rgb_values_list[4]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[4]), pixel, strip) for pixel in range(LEDS_PER_PIXEL*5, LEDS_PER_PIXEL*6): - update_led_strip(list(*rgb_values_list[5]), pixel, strip) + update_led_strip(tuple(*rgb_values_list[5]), pixel, strip) if __name__ == "__main__": # Connect to Wi-Fi