testing universe 1

Signed-off-by: Ebbe Baß <ebbe.bass>
main
Ebbe Baß 2024-02-14 02:23:44 +01:00
parent 5b44186386
commit ee7e4a3ea8
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ def start_mqtt_publishers(universe_count):
print("universe count: "+str(used_universes)) print("universe count: "+str(used_universes))
# universes_to_publish = list(range(1, used_universes + 1)) # universes_to_publish = list(range(1, used_universes + 1))
# Create and start a thread for each universe # Create and start a thread for each universe
for universe in range(used_universes): for universe in range(1):
threads = [threading.Thread(target=mqtt_publisher, args=(universe,))] threads = [threading.Thread(target=mqtt_publisher, args=(universe,))]
for thread in threads: for thread in threads: