mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-10-30 04:26:50 +03:00 
			
		
		
		
	* ArduinoOTA: allow use without MDNS, add MDNS.update() in handle() * Update examples with MDNS.update() in loop * Update CaptivePortalAdvanced.ino Fix typo * Update CaptivePortalAdvanced.ino astyle * Update Arduino_Wifi_AVRISP.ino astyle
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|   To upload through terminal you can use: curl -F "image=@firmware.bin" esp8266-webupdate.local/update
 | |
| */
 | |
| 
 | |
| #include <ESP8266WiFi.h>
 | |
| #include <WiFiClient.h>
 | |
| #include <ESP8266WebServer.h>
 | |
| #include <ESP8266mDNS.h>
 | |
| #include <ESP8266HTTPUpdateServer.h>
 | |
| 
 | |
| #ifndef STASSID
 | |
| #define STASSID "your-ssid"
 | |
| #define STAPSK  "your-password"
 | |
| #endif
 | |
| 
 | |
| const char* host = "esp8266-webupdate";
 | |
| const char* ssid = STASSID;
 | |
| const char* password = STAPSK;
 | |
| 
 | |
| ESP8266WebServer httpServer(80);
 | |
| ESP8266HTTPUpdateServer httpUpdater;
 | |
| 
 | |
| void setup(void) {
 | |
| 
 | |
|   Serial.begin(115200);
 | |
|   Serial.println();
 | |
|   Serial.println("Booting Sketch...");
 | |
|   WiFi.mode(WIFI_AP_STA);
 | |
|   WiFi.begin(ssid, password);
 | |
| 
 | |
|   while (WiFi.waitForConnectResult() != WL_CONNECTED) {
 | |
|     WiFi.begin(ssid, password);
 | |
|     Serial.println("WiFi failed, retrying.");
 | |
|   }
 | |
| 
 | |
|   MDNS.begin(host);
 | |
| 
 | |
|   httpUpdater.setup(&httpServer);
 | |
|   httpServer.begin();
 | |
| 
 | |
|   MDNS.addService("http", "tcp", 80);
 | |
|   Serial.printf("HTTPUpdateServer ready! Open http://%s.local/update in your browser\n", host);
 | |
| }
 | |
| 
 | |
| void loop(void) {
 | |
|   httpServer.handleClient();
 | |
|   MDNS.update();
 | |
| }
 |