From 6a0af064ce4ca776499e3dd1f121da9bc980cb28 Mon Sep 17 00:00:00 2001 From: CiscoTheWolf <cisco@hostingwire.net> Date: Fri, 9 Jun 2023 20:39:37 +0200 Subject: [PATCH] fixed bug in blink timer --- rpi/antRender.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi/antRender.py b/rpi/antRender.py index 3f08b22..72bea3f 100644 --- a/rpi/antRender.py +++ b/rpi/antRender.py @@ -132,7 +132,7 @@ def random_blinks(): if proot_state.get_animations_ready(): proot_state.set_desired_expression(1) - time.sleep(random.randint(0.1)) + time.sleep(0.2) proot_state.set_desired_expression(0)