From 1096bf5ce34bb772d496f35b5618570afafee34c Mon Sep 17 00:00:00 2001 From: iGoX Date: Tue, 24 Mar 2026 22:12:24 +0100 Subject: [PATCH] Fix start sequence (#4) Reviewed-on: https://code.igox.org/iGoX/busylight/pulls/4 --- ESP32/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ESP32/main.py b/ESP32/main.py index b61fe78..53b10e0 100644 --- a/ESP32/main.py +++ b/ESP32/main.py @@ -281,7 +281,7 @@ async def shutdown(request): # Startup effect def startUpSeq(): print('Start seq begins') - __setBusyLightStatus('OFF') + __setBusyLightColor(statusColors.get('OFF'), 0.1) time.sleep_ms(100) __setBusyLightStatus('BUSY') time.sleep_ms(200) @@ -291,7 +291,6 @@ def startUpSeq(): time.sleep_ms(500) __setBusyLightStatus('OFF') print('Start seq is ended') - __setBusyLightColor(statusColors.get('OFF'), 0.1) startUpSeq()