diff --git a/src/main.cpp b/src/main.cpp index 78c1bee1..59773e2b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -236,6 +236,7 @@ class ButtonThread : public OSThread if (millis() - longPressTime > 10 * 1000) { #ifdef TBEAM_V10 if (axp192_found == true) { + setLed(false); power->shutdown(); } #endif diff --git a/src/meshwifi/meshhttp.cpp b/src/meshwifi/meshhttp.cpp index 4f4170cb..2ac81b1c 100644 --- a/src/meshwifi/meshhttp.cpp +++ b/src/meshwifi/meshhttp.cpp @@ -858,6 +858,9 @@ void handleRoot(HTTPRequest *req, HTTPResponse *res) res->setStatusText("Not found"); res->println("404 Not Found"); res->printf("

File not found: %s

\n", filename.c_str()); + res->printf("

\n"); + res->printf("

You have gotten this error because the filesystem for the web server has not been loaded.

\n"); + res->printf("

Please review the 'Common Problems' section of the web interface documentation.

\n"); return; }