From 8816c5f8e5204a7592286709e6ccaec17ecf647c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 13 Feb 2024 00:08:55 +0100 Subject: [PATCH] fixed pzblish 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 0375f56..9cfecef 100644 --- a/server/app.py +++ b/server/app.py @@ -128,7 +128,7 @@ def mqtt_publisher(universe): topic = f"/{universe}/{channel}" # Publish the DMX value to the MQTT topic - mqtt_client.publish(topic, payload=value, qos=0, retain=False) + mqtt_client.publish(topic, value) print(str(universe+" "+channel+" "+value)) except Exception as e: