From 7a1c6894da30a445dae2e0d8e0b0b2bd1718a0ee Mon Sep 17 00:00:00 2001 From: CiscoTheWolf Date: Tue, 23 May 2023 22:16:45 +0200 Subject: [PATCH] Set the frame update speed back to 0.01 seconds per frame. --- rpi/antRender.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi/antRender.py b/rpi/antRender.py index b550c41..2452b1f 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -213,7 +213,7 @@ def update_screen(): def interrupt_timer(): while True: update_screen() - time.sleep(0.05) + time.sleep(0.01) # Create and start the interrupt thread screen_update_thread = threading.Thread(target=interrupt_timer)