Merge pull request #4429 from Bmooij/feature/Add_flash_helper_constructor_to_Uri
Add flash helper constructor to Uri
This commit is contained in:
		
						commit
						d6b383f84b
					
				| @ -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!"); | ||||
|   }); | ||||
| 
 | ||||
|  | ||||
| @ -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 { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user