mirror of
https://github.com/RonMeier/LoRa-Monitor.git
synced 2026-05-08 22:35:04 +02:00
70 lines
2.0 KiB
Arduino
70 lines
2.0 KiB
Arduino
#include <WiFi.h>
|
|
#include <WiFiClient.h>
|
|
#include <WebServer.h>
|
|
#include <Update.h>
|
|
|
|
const char* ssid = "WlanName";
|
|
const char* password = "pwd";
|
|
|
|
WebServer server(80);
|
|
|
|
const char* serverIndex = "<!DOCTYPE HTML><html><head>"
|
|
"<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>"
|
|
"<meta name='viewport' content='width=device-width, initial-scale=1.1'>"
|
|
"<h2>FW update</h2><hr>"
|
|
"<form method='POST' action='/update' enctype='multipart/form-data'>"
|
|
"<input type='file' name='update'><br><br>"
|
|
"<input type='submit' value='Update'>"
|
|
"</head></html>";
|
|
|
|
void setup(void) {
|
|
Serial.begin(115200);
|
|
|
|
WiFi.begin(ssid, password);
|
|
Serial.println("");
|
|
|
|
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());
|
|
|
|
server.on("/", HTTP_GET, []() {
|
|
server.sendHeader("Connection", "close");
|
|
server.send(200, "text/html", serverIndex);
|
|
});
|
|
server.on("/update", HTTP_POST, []() {
|
|
server.sendHeader("Connection", "close");
|
|
server.send(200, "text/plain", (Update.hasError()) ? "FAIL" : "OK");
|
|
ESP.restart();
|
|
}, []() {
|
|
HTTPUpload& upload = server.upload();
|
|
if (upload.status == UPLOAD_FILE_START) {
|
|
Serial.printf("Update: %s\n", upload.filename.c_str());
|
|
if (!Update.begin(UPDATE_SIZE_UNKNOWN)) {
|
|
Update.printError(Serial);
|
|
}
|
|
} else if (upload.status == UPLOAD_FILE_WRITE) {
|
|
if (Update.write(upload.buf, upload.currentSize) != upload.currentSize) {
|
|
Update.printError(Serial);
|
|
}
|
|
} else if (upload.status == UPLOAD_FILE_END) {
|
|
if (Update.end(true)) {
|
|
Serial.printf("Update Success: %u\nRebooting...\n", upload.totalSize);
|
|
} else {
|
|
Update.printError(Serial);
|
|
}
|
|
}
|
|
});
|
|
server.begin();
|
|
}
|
|
|
|
void loop(void) {
|
|
server.handleClient();
|
|
delay(1);
|
|
}
|