We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7415d0 commit e076710Copy full SHA for e076710
src/Wippersnapper_V2.cpp
@@ -1216,6 +1216,11 @@ void Wippersnapper_V2::connectV2() {
1216
callDecodeB2D();
1217
WS_DEBUG_PRINTLN(
1218
"[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);
1224
return;
1225
} else {
1226
WS_DEBUG_PRINTLN("Running in online mode...");
0 commit comments