From 47506bedf7d8df013835455653fb9e044a07c4e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Sat, 17 Feb 2024 00:27:20 +0100 Subject: [PATCH] fixed value 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 d6b35c9..d36ac23 100644 --- a/server/app.py +++ b/server/app.py @@ -127,7 +127,7 @@ def start_mqtt_publishers(): topic = {"PiXelTubes/"+str(artNetPacket.universe)} # Publish the DMX value to the MQTT topic - mqtt_client.publish(topic, dmxPacket) + mqtt_client.publish(topic, str(dmxPacket)) except Exception as e: print(e) except KeyboardInterrupt: