fixed pzblish

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-13 00:08:55 +01:00
parent a8a3cb618b
commit 8816c5f8e5
1 changed files with 1 additions and 1 deletions

View File

@ -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: