feat: implement OTA functionality and update build scripts; change upgrade link to OTA in HTML

This commit is contained in:
2025-02-17 12:41:25 +01:00
parent 240795a2d0
commit 2a67d8f67c
6 changed files with 33 additions and 5 deletions

8
src/ota.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef OTA_H
#define OTA_H
#include <ESPAsyncWebServer.h>
void setupOTA(AsyncWebServer &server);
#endif