Version bump
All checks were successful
Test compiling project / test (push) Successful in 2m46s

This commit is contained in:
2025-02-22 21:45:50 +01:00
parent 102a842079
commit 32d35d7029
8 changed files with 74 additions and 9 deletions

View File

@@ -7,6 +7,7 @@
#include <ArduinoLog.h>
#include "json_builder.h"
#include "../tools/tools.h"
#include <SPIFFS.h>
extern WaterData water_data;
extern DeviceTelemetry telemetry;
@@ -59,6 +60,6 @@ void setup_api_endpoints(){
};
xTaskCreate(run_ota_update_task, "RunOTAUpdate", 1024 * 8, (void *)&args, 1, NULL);
request->send(200, "text/plain", "OTA Update started");
request->send(SPIFFS, "/update_progress.html", "text/html", false, processor);
});
}