From 7198cd596e21c80c65942f51c5186f697cc25278 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 10 Aug 2019 22:46:54 +0200 Subject: [PATCH] turn off LED after reboot check --- src/MyESP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MyESP.cpp b/src/MyESP.cpp index 1a58af112..e8b644a1b 100644 --- a/src/MyESP.cpp +++ b/src/MyESP.cpp @@ -2565,7 +2565,7 @@ void MyESP::_bootupSequence() { if (isWifiConnected()) { _setSystemBootStatus(MYESP_BOOTSTATUS_BOOTED); // completed, reset flag - digitalWrite(LED_BUILTIN, LOW); // turn off LED + digitalWrite(LED_BUILTIN, HIGH); // turn off LED // write a log message if we're not using NTP, otherwise wait for the internet time to arrive if (!_ntp_enabled) {