From 4f37c94c22c2ff75220dc68fc5237fd4f801fecb Mon Sep 17 00:00:00 2001 From: CiscoTheWolf <cisco@hostingwire.net> Date: Tue, 23 May 2023 22:26:58 +0200 Subject: [PATCH] Decrease the time between blinks. --- rpi/antRender.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi/antRender.py b/rpi/antRender.py index 6a2d632..79616d4 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -219,7 +219,7 @@ def interrupt_timer(): def random_blinks(): while True: - time.sleep(random.randint(5, 10)) + time.sleep(random.randint(3, 5)) proot_state = ProotState()