From d443eddb933b196daec31a372e3c0354cf852862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Tue, 13 Feb 2024 00:49:26 +0100 Subject: [PATCH] fixed join muticast universe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- README.md | 2 +- server/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f1379e..5b85a54 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ sudo apt update -y && sudo apt upgrade -y && sudo apt install python3 python3-pi pip3 install Flask pip3 install adafruit_circuitpython_neopixel pip3 install Requests -pip3 install stupidArtnet +pip3 install sacn pip3 install wifi pip3 install paho-mqtt pip3 install get-mac diff --git a/server/app.py b/server/app.py index 5098fee..6b81f21 100644 --- a/server/app.py +++ b/server/app.py @@ -125,7 +125,7 @@ def mqtt_publisher(universe): print(packet.dmxData) global dmx_values dmx_values = packet.dmxData - receiver.join_multicast() + receiver.join_multicast(universe) while True: if dmx_values is not None: for channel, value in enumerate(dmx_values):