From ea6b9c113dae6e218c5e805ee5e9fbdb07df6b34 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Tue, 29 Jul 2025 22:44:06 -0500 Subject: [PATCH] Make reset use fade blink --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 463d3d7..9b2fa9d 100644 --- a/src/main.py +++ b/src/main.py @@ -44,7 +44,7 @@ pins = { def reset(): for name, pin in pins.items(): pin.setup() - pin.blink(3, 0.5) + pin.fade_blink(3, 0.5) reset()