feat: implement OTA update functionality with web interface; update partition settings and build configuration

This commit is contained in:
2025-02-18 11:42:52 +01:00
parent 175d614d1f
commit 3c783c9844
5 changed files with 335 additions and 11 deletions

View File

@ -1,6 +1,8 @@
#ifndef OTA_H
#define OTA_H
#include <ESPAsyncWebServer.h>
void handleOTAUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final);
#endif