Skip to content

Commit fcd1d5b

Browse files
committed
chore: Removed unused 2 seconds delay on setup.
1 parent d0dedf2 commit fcd1d5b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

webscreen/webscreen.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ static bool readConfigJSON(
9595

9696
void setup() {
9797
Serial.begin(115200);
98-
vTaskDelay(pdMS_TO_TICKS(2000));
9998

10099
pinMode(OUTPUT_PIN, OUTPUT);
101100
digitalWrite(OUTPUT_PIN, HIGH);
@@ -107,7 +106,7 @@ void setup() {
107106
fallback_setup();
108107
return;
109108
}
110-
109+
111110
String s, p, scriptFile;
112111
if(!readConfigJSON("/webscreen.json", s, p, scriptFile, g_mqtt_enabled, g_bg_color, g_fg_color)) {
113112
LOG("Failed to read /webscreen.json => starting fallback mode.");

0 commit comments

Comments
 (0)