parent
a586d04f07
commit
e520322f16
|
@ -117,7 +117,6 @@ def mqtt_publisher(ti_receiver):
|
|||
artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = True, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454)
|
||||
while True:
|
||||
try:
|
||||
print(1)
|
||||
tube_index = ti_receiver.recv()
|
||||
# Gets whatever the last Art-Net packet we received is
|
||||
artNetPacket = artNet.readPacket()
|
||||
|
@ -141,6 +140,7 @@ def mqtt_publisher(ti_receiver):
|
|||
colors = [[p1_r, p1_g, p1_b], [p2_r, p2_g, p2_b], [p3_r, p3_g, p3_b], [p4_r, p4_g, p4_b], [p5_r, p5_g, p5_b], [p6_r, p6_g, p6_b]]
|
||||
result_str = [str(color) for color in colors]
|
||||
result = str(result_str)
|
||||
print(result)
|
||||
mqtt_client.publish(p1_topic, result)
|
||||
|
||||
except KeyboardInterrupt:
|
||||
|
|
Loading…
Reference in New Issue