all the bug fixes
This commit is contained in:
parent
810e6f71d2
commit
a47b167a07
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue