Skip to content

Commit e076710

Browse files
committed
[SD] Set status led green after successful config
1 parent b7415d0 commit e076710

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Wippersnapper_V2.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,11 @@ void Wippersnapper_V2::connectV2() {
12161216
callDecodeB2D();
12171217
WS_DEBUG_PRINTLN(
12181218
"[Offline] Hardware configured, skipping network setup and running app...");
1219+
// Set the status LED to green to indicate successful configuration
1220+
setStatusLEDColor(0x00A300, WS.status_pixel_brightness);
1221+
delay(100);
1222+
// Set the status LED to off during app runtime
1223+
setStatusLEDColor(0x000000, WS.status_pixel_brightness);
12191224
return;
12201225
} else {
12211226
WS_DEBUG_PRINTLN("Running in online mode...");

0 commit comments

Comments
 (0)