ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

httpserver.cpp 526B

1234567891011121314151617
  1. #include "httpserver.h"
  2. bool HTTPServer::addRootFileHandler() {
  3. // //experimental, see doku.md
  4. // server.serveStatic("/compressed", LittleFS, "/compressed.html.gzip");
  5. this->serveStatic("", LittleFS, "/index.html");
  6. this->serveStatic("/", LittleFS, "/index.html");
  7. this->serveStatic("/#", LittleFS, "/index.html");
  8. this->serveStatic("/style.css", LittleFS, "/style.css");
  9. this->serveStatic("/input.js", LittleFS, "/input.js");
  10. this->serveStatic("/favicon.png", LittleFS, "/favicon.png");
  11. return true;
  12. }