From 2e9a7a9e29f9932ad3d0826f69342c2696bc1af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 00:28:55 +0100 Subject: [PATCH] added 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 74a84c6..0895959 100644 --- a/server/app.py +++ b/server/app.py @@ -126,6 +126,7 @@ def start_mqtt_publishers(): topic = {"PiXelTubes/"+str(artNetPacket.universe)} # Publish the DMX value to the MQTT topic + print(str(dmxPacket)) mqtt_client.publish(topic, str(dmxPacket)) except KeyboardInterrupt: artNet.close()