From a47b167a07b550f2c3da0758f357f1ade51f9633 Mon Sep 17 00:00:00 2001 From: CiscoTheWolf Date: Mon, 29 May 2023 20:24:34 +0200 Subject: [PATCH] all the bug fixes --- rpi/antRender.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpi/antRender.py b/rpi/antRender.py index e92699e..924cbdf 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -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()