Skip to content

Instantly share code, notes, and snippets.

@msraynsford
Created February 27, 2018 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msraynsford/41ad82fbe80490a20451d57c9bc7bdfe to your computer and use it in GitHub Desktop.
Save msraynsford/41ad82fbe80490a20451d57c9bc7bdfe to your computer and use it in GitHub Desktop.
webServer.on("/", [](){
webServer.send(200, "text/plain", "visit /admin for wifi configuration");
});
webServer.serveStatic("/admin", SPIFFS, "/admin.html");
webServer.on("/admin", handleAdmin);
webServer.begin();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment