From 3bfe548b448500bdb99717633f98cac7c5460698 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Tue, 29 Jul 2025 22:29:59 -0500 Subject: [PATCH] Adjust blink time --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 6dd46a3..480fcce 100644 --- a/src/main.py +++ b/src/main.py @@ -35,6 +35,6 @@ pins = { def reset(): for name, pin in pins.items(): pin.setup() - pin.blink(3, 0.3) + pin.blink(3, 0.5) reset()