-
-
Save knoxcu/a4e41279158a14e51db2 to your computer and use it in GitHub Desktop.
ESP8266 Arduino OTA example v1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiUDP.h> | |
const char* ssid = ".........."; | |
const char* password = "..........."; | |
WiFiUDP listener; | |
void setup() { | |
Serial.begin(115200); | |
Serial.setDebugOutput(true); | |
Serial.println(""); | |
Serial.println("OTA test"); | |
WiFi.begin(ssid, password); | |
while (WiFi.status() != WL_CONNECTED) { | |
delay(500); | |
Serial.print("."); | |
} | |
Serial.println(""); | |
Serial.print("Connected to "); | |
Serial.println(ssid); | |
Serial.print("IP address: "); | |
Serial.println(WiFi.localIP()); | |
listener.begin(8266); | |
Serial.print("Sketch size: "); | |
Serial.println(ESP.getSketchSize()); | |
Serial.print("Free size: "); | |
Serial.println(ESP.getFreeSketchSpace()); | |
} | |
void loop() { | |
int cb = listener.parsePacket(); | |
if (cb) { | |
IPAddress remote = listener.remoteIP(); | |
int cmd = listener.parseInt(); | |
int port = listener.parseInt(); | |
int sz = listener.parseInt(); | |
Serial.println("Got packet"); | |
Serial.printf("%d %d %d\r\n", cmd, port, sz); | |
WiFiClient cl; | |
if (!cl.connect(remote, port)) { | |
Serial.println("failed to connect"); | |
return; | |
} | |
listener.stop(); | |
if (!ESP.updateSketch(cl, sz)) { | |
Serial.println("Update failed"); | |
} | |
} | |
delay(100); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment