From e12d147297e9b5c55835ca984388ec93b1a69a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sun, 18 Feb 2024 01:04:29 +0100 Subject: [PATCH] removed print 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 0361ce8..f57ab99 100644 --- a/server/app.py +++ b/server/app.py @@ -116,7 +116,7 @@ def mqtt_publisher(shared_mem): artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = True, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454) while True: tube_index = bytes(shared_mem.buf[:24]).decode() - print(tube_index) + # print(tube_index) try: # Gets whatever the last Art-Net packet we received is artNetPacket = artNet.readPacket()