Make reset use fade blink

This commit is contained in:
Garrett Mills 2025-07-29 22:44:06 -05:00
parent 297b035552
commit ea6b9c113d

View File

@ -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()