From 9796dcb9a4dbdc6728b3df86263498f5dd4379ea Mon Sep 17 00:00:00 2001 From: garrettmills Date: Tue, 29 Jul 2025 22:45:02 -0500 Subject: [PATCH] Make reset do more of a light show --- src/main.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main.py b/src/main.py index 9b2fa9d..54fb084 100644 --- a/src/main.py +++ b/src/main.py @@ -46,5 +46,14 @@ def reset(): pin.setup() pin.fade_blink(3, 0.5) + for name, pin in pins.items(): + pin.on() + time.sleep(0.5) + + time.sleep(0.5) + + for name, pin in pins.items(): + pin.off() + reset()