Add flash helper constructor to Uri

This commit is contained in:
Bob Mooij
2020-10-19 16:20:49 +02:00
parent 1287c52933
commit ae240a3902
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void setup(void) {
Serial.println("MDNS responder started");
}
server.on("/", []() {
server.on(F("/"), []() {
server.send(200, "text/plain", "hello from esp32!");
});