From 0b5645a15186e118e54d030a23331baf2aaa66d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 16:20:51 +0100 Subject: [PATCH] fixed debugfger 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 533dba8..f6b6295 100644 --- a/server/app.py +++ b/server/app.py @@ -125,12 +125,12 @@ def update_tube_index(): def mqtt_publisher(): global TUBE_INDEX - print(TUBE_INDEX) # Create and start a thread for each universe mqtt_client = connect_mqtt() artnetBindIp = get_eth0_ip() artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = True, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454) while True: + print(TUBE_INDEX) try: # Gets whatever the last Art-Net packet we received is artNetPacket = artNet.readPacket()