Compare commits

...

3 Commits

Author SHA1 Message Date
53920dbb77 Merge pull request 'rev2' (#4) from rev2 into main
All checks were successful
Compilie project and upload binaries / test (push) Successful in 4m1s
Reviewed-on: #4
2025-11-05 20:33:26 +01:00
96341cfd42 Bump Version
All checks were successful
Test project compilation / test (push) Successful in 4m8s
Test project compilation / test (pull_request) Successful in 3m49s
2025-11-05 20:23:11 +01:00
c432f47dff Fixed OTA 2025-11-05 20:20:24 +01:00
4 changed files with 4 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ lib_deps =
${env:esp32_base.lib_deps}
robtillaart/INA226@ ~0.6.4
upload_protocol = espota
upload_port = 192.168.6.47
upload_port = 192.168.6.45
build_flags = ${env:esp32_base.build_flags} -DUSE_INA226
[env:native]

View File

@@ -7,7 +7,7 @@
#define water_level_min_key "water_level_min"
#define water_level_max_key "water_level_max"
#define water_volume_key "water_volume"
#define current_software_version Version{2, 1, 0}
#define current_software_version Version{2, 2, 0}
#define REQUIRED_SPIFFS_VERSION Version{9, 0, 0}
#define RESISTOR_VALUE 4

View File

@@ -71,6 +71,6 @@ void setup_api_endpoints(){
};
xTaskCreate(run_ota_update_task, "RunOTAUpdate", 1024 * 8, (void *)&args, 1, NULL);
request->send(SPIFFS, "/update_progress.html", "text/html", false, processor);
request->send(LittleFS, "/update_progress.html", "text/html", false, processor);
});
}

View File

@@ -1,3 +1,4 @@
#include <ESPAsyncWebServer.h>
#include <LittleFS.h>
void setup_api_endpoints();