From 85aa05a4cb904b9e1a5f399a155e2542ccd5407b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 03:52: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ß --- server/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server/app.py b/server/app.py index 5154619..37e350d 100644 --- a/server/app.py +++ b/server/app.py @@ -165,6 +165,7 @@ def start_mqtt_publishers(): p6_topic = "tube-"+str(row[0])+"/p6" # Publish pixel topic + print(str([p1_r, p1_g, p1_b])) mqtt_client.publish(p1_topic, str([p1_r, p1_g, p1_b])) mqtt_client.publish(p2_topic, str([p2_r, p2_g, p2_b])) mqtt_client.publish(p3_topic, str([p3_r, p3_g, p3_b]))