all the bug fixes

This commit is contained in:
CiscoTheWolf 2023-05-29 20:24:34 +02:00
parent 810e6f71d2
commit a47b167a07

View file

@ -50,11 +50,11 @@ def random_blinks():
# Create and start screen update interrupts
screen_update_thread = threading.Thread(target=ProotState.interrupt_timer)
screen_update_thread = threading.Thread(target=interrupt_timer)
screen_update_thread.start()
# Create and start random blinks interrupts
screen_update_thread = threading.Thread(target=ProotState.random_blinks)
screen_update_thread = threading.Thread(target=random_blinks)
screen_update_thread.start()