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!");
});

View File

@ -12,6 +12,7 @@ class Uri {
public:
Uri(const char *uri) : _uri(uri) {}
Uri(const String &uri) : _uri(uri) {}
Uri(const __FlashStringHelper *uri) : _uri(String(uri)) {}
virtual ~Uri() {}
virtual Uri* clone() const {