made some performance improvements

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-18 16:31:03 +01:00
parent b9efd8d208
commit 33d4441b30
1 changed files with 15 additions and 17 deletions

View File

@ -121,8 +121,7 @@ def mqtt_publisher(ti_receiver):
# Make sure we actually *have* a packet # Make sure we actually *have* a packet
if ti_receiver.poll(): if ti_receiver.poll():
ti_data = ti_receiver.recv() ti_data = ti_receiver.recv()
if ti_data is not None: tube_index, tube_index_old = literal_eval(ti_data), literal_eval(ti_data)
tube_index = literal_eval(ti_data)
if artNetPacket is not None: if artNetPacket is not None:
#Checks to see if the current packet is for the specified DMX Universe #Checks to see if the current packet is for the specified DMX Universe
dmxPacket = artNetPacket.data dmxPacket = artNetPacket.data
@ -139,7 +138,6 @@ def mqtt_publisher(ti_receiver):
# Publish pixel topic # 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])])) 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: else:
if artNetPacket is not None: if artNetPacket is not None:
#Checks to see if the current packet is for the specified DMX Universe #Checks to see if the current packet is for the specified DMX Universe