From c4e662ee949f6fb1dbd807e117315301875ce173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 13 Feb 2024 15:51:32 +0100 Subject: [PATCH] new try MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- server/app.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/server/app.py b/server/app.py index eee1937..c44820c 100644 --- a/server/app.py +++ b/server/app.py @@ -118,19 +118,17 @@ def mqtt_publisher(universe, artnetPacket): mqtt_client = connect_mqtt() try: while True: - print(str(artnetPacket)) if artnetPacket is not None and artnetPacket.data is not None: if artnetPacket.universe == universe: dmxPacket = artnetPacket.data if dmxPacket is not None: - print(str(dmxPacket)) - # for i in dmxPacket: - # # # Create MQTT topic based on the universe and channel - # # topic = f"{universe}/{channel}" + for i in len(512): + # # Create MQTT topic based on the universe and channel + # topic = f"{universe}/{channel}" - # # # Publish the DMX value to the MQTT topic - # # mqtt_client.publish(topic, value) - # print(dmxPacket[i-1], end=" ") + # # Publish the DMX value to the MQTT topic + # mqtt_client.publish(topic, value) + print(dmxPacket[i-1], end=" ") except Exception as e: print(f"Error in universe {universe}: {e}")