Compare commits

3 Commits

Author SHA1 Message Date
dbb32efda8 Merge pull request 'rev2' (#3) from rev2 into main
All checks were successful
Compilie project and upload binaries / test (push) Successful in 3m57s
Reviewed-on: #3
2025-11-05 19:17:56 +01:00
7542d44e21 revert df06be23cb
Some checks failed
Test compiling project / test (push) Failing after 0s
revert Fix image pull URL
2025-11-05 19:17:49 +01:00
df06be23cb Fix image pull URL
Some checks failed
Test compiling project / test (push) Failing after 59s
2025-11-02 15:45:40 +01:00
4 changed files with 3 additions and 4 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.45
upload_port = 192.168.6.47
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, 2, 0}
#define current_software_version Version{2, 1, 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(LittleFS, "/update_progress.html", "text/html", false, processor);
request->send(SPIFFS, "/update_progress.html", "text/html", false, processor);
});
}

View File

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