parent
b9efd8d208
commit
33d4441b30
|
@ -121,8 +121,7 @@ def mqtt_publisher(ti_receiver):
|
|||
# Make sure we actually *have* a packet
|
||||
if ti_receiver.poll():
|
||||
ti_data = ti_receiver.recv()
|
||||
if ti_data is not None:
|
||||
tube_index = literal_eval(ti_data)
|
||||
tube_index, tube_index_old = literal_eval(ti_data), literal_eval(ti_data)
|
||||
if artNetPacket is not None:
|
||||
#Checks to see if the current packet is for the specified DMX Universe
|
||||
dmxPacket = artNetPacket.data
|
||||
|
@ -139,7 +138,6 @@ def mqtt_publisher(ti_receiver):
|
|||
|
||||
# Publish pixel topic
|
||||
mqtt_client.publish(p1_topic, str([str([p1_r, p1_g, p1_b]), str([p2_r, p2_g, p2_b]), str([p3_r, p3_g, p3_b]), str([p4_r, p4_g, p4_b]), str([p5_r, p5_g, p5_b]), str([p6_r, p6_g, p6_b])]))
|
||||
tube_index_old = tube_index
|
||||
else:
|
||||
if artNetPacket is not None:
|
||||
#Checks to see if the current packet is for the specified DMX Universe
|
||||
|
|
Loading…
Reference in New Issue