diff --git a/server/app.py b/server/app.py index ed9b926..e13a362 100644 --- a/server/app.py +++ b/server/app.py @@ -120,6 +120,7 @@ def start_mqtt_publishers(universe_count): artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = False, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454, REFRESH=30) tuple_ip = (str(get_eth0_ip()), 6454) artNet.art_pol_reply(tuple_ip) + print(universe_list) try: while True: try: @@ -130,7 +131,7 @@ def start_mqtt_publishers(universe_count): if artNetPacket is not None and artNetPacket.data is not None: #Checks to see if the current packet is for the specified DMX Universe if artNetPacket.universe == universe: - print(artNetPacket.universe) + # print(artNetPacket.universe) dmxPacket = artNetPacket.data try: for i in range(512):