From 4342abce41597f4ef653404e6b989002918061fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Wed, 14 Feb 2024 22:12:24 +0100 Subject: [PATCH] removed old debug 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 afb7f21..e64cab5 100644 --- a/server/app.py +++ b/server/app.py @@ -125,8 +125,8 @@ def start_mqtt_publishers(universe_count): if artNetPacket is not None and artNetPacket.data is not None: #Checks to see if the current packet is for the specified DMX Universe dmxPacket = artNetPacket.data - print(str(dmxPacket)) for i in range(512): + print(str(i)) try: # Create MQTT topic based on the universe and channel topic = f"{str(artNetPacket.universe)}/{str(i)}"