feat: implement OTA update functionality with backup and restore for configurations

This commit is contained in:
Manuel Weiser
2025-02-25 10:57:49 +01:00
parent 8499613215
commit 484c95523d
4 changed files with 202 additions and 193 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef OTA_H
#define OTA_H
#include <ArduinoOTA.h>
#include <ESPAsyncWebServer.h>
void handleUpdate(AsyncWebServer &server);
#endif