added reult as args

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-17 15:58:07 +01:00
parent f0e4bde57a
commit b956951178
1 changed files with 2 additions and 3 deletions

View File

@ -118,14 +118,13 @@ def update_tube_index():
print("Updated index: "+str(result))
time.sleep(10)
def start_mqtt_publishers():
def start_mqtt_publishers(result):
# Create and start a thread for each universe
mqtt_client = connect_mqtt()
artnetBindIp = get_eth0_ip()
artNet = Artnet.Artnet(BINDIP = artnetBindIp, DEBUG = True, SHORTNAME = "PiXelTubeMaster", LONGNAME = "PiXelTubeMaster", PORT = 6454)
cur = db.cursor()
cur.execute("SELECT mac_address, universe, dmx_address FROM tubes")
global result
result = cur.fetchall()
cur.close()
while True:
@ -158,5 +157,5 @@ if __name__ == "__main__":
tube_index_updater_thread.start()
flask_thread = Process(target=flask_api)
flask_thread.start()
publisher_thread = Process(target=start_mqtt_publishers)
publisher_thread = Process(target=start_mqtt_publishers, args=(result, ))
publisher_thread.start()