From db3a26b36a59fe772feca6c5c2b060e429f7cebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 20 Feb 2024 17:33:13 +0100 Subject: [PATCH] print dmx data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.py b/server/app.py index 42c48ff..45eab3d 100644 --- a/server/app.py +++ b/server/app.py @@ -130,6 +130,7 @@ def mqtt_publisher(ti_queue): artNetPacket = artNet.readPacket() # Make sure we actually *have* a packet if artNetPacket is not None: + print(artNetPacket.data) if tube_index is not None: for index_row in tube_index: if artNetPacket.universe == int(index_row[1]): @@ -144,7 +145,6 @@ def mqtt_publisher(ti_queue): colors = [[p1_r, p1_g, p1_b], [p2_r, p2_g, p2_b], [p3_r, p3_g, p3_b], [p4_r, p4_g, p4_b], [p5_r, p5_g, p5_b], [p6_r, p6_g, p6_b]] result_str = [str(color) for color in colors] result = str(result_str) - print(result) mqtt_client.publish(p1_topic, result) except KeyboardInterrupt: artNet.close()