2019-03-14 04:29:53 +00:00
|
|
|
const char* host = "ESP32-OTA"; // Used for MDNS resolution
|
|
|
|
const char* ssid = "ssid";
|
|
|
|
const char* password = "password";
|
|
|
|
|
|
|
|
#include <WebOTA.h>
|
|
|
|
WebServer OTAServer(8080);
|
|
|
|
|
|
|
|
#define LED_PIN 2
|
|
|
|
|
|
|
|
// the setup function runs once when you press reset or power the board
|
|
|
|
void setup() {
|
|
|
|
Serial.begin(115200);
|
|
|
|
|
|
|
|
// initialize digital pin LED_PIN as an output.
|
|
|
|
pinMode(LED_PIN, OUTPUT);
|
|
|
|
|
|
|
|
init_wifi(ssid, password, host);
|
|
|
|
init_web_ota(&OTAServer);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the loop function runs over and over again forever
|
|
|
|
void loop() {
|
2019-03-14 22:27:24 +00:00
|
|
|
int md = 1000;
|
2019-03-14 04:29:53 +00:00
|
|
|
|
|
|
|
digitalWrite(LED_PIN, HIGH);
|
2019-03-14 22:27:24 +00:00
|
|
|
webota_delay(md);
|
2019-03-14 04:29:53 +00:00
|
|
|
digitalWrite(LED_PIN, LOW);
|
2019-03-14 22:27:24 +00:00
|
|
|
webota_delay(md);
|
2019-03-14 04:29:53 +00:00
|
|
|
|
|
|
|
OTAServer.handleClient();
|
|
|
|
}
|