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: