diff --git a/server/app.py b/server/app.py index 4e6b99d..ad87944 100644 --- a/server/app.py +++ b/server/app.py @@ -122,10 +122,12 @@ def mqtt_publisher(data_queue): artNetPacket = artNet.readPacket() # Make sure we actually *have* a packet if artNetPacket is not None: + print(1) #Checks to see if the current packet is for the specified DMX Universe dmxPacket = artNetPacket.data # Create MQTT topic based on the universe and channel if tube_index is not None: + print(2) for index_row in tube_index: if artNetPacket.universe == int(index_row[1]): dmx_address = int(index_row[2])