Skip to content

Commit

Permalink
20240505
Browse files Browse the repository at this point in the history
Web UI:
- Ukrainian 🇺🇦 translation fully rewrote. Thanks to @artbrayko 🚀 PR #2, #3

Code:
- Fix mDNS resolver
- Replace 99% of DEBUG_PRINT to LOGI/LOGD/LOGW
- Print socket client IP in web console while connect
- Move all peripherals functions to per.cpp
- Fix file save
- Make button polarity option works
- Fix GitHub update logs print
  • Loading branch information
xyzroe committed May 5, 2024
1 parent 74c1224 commit b883b22
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified bin/XZG_20240505.full.bin
Binary file not shown.
Binary file modified bin/XZG_20240505.ota.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions src/web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ int currentLength = 0; // current size of written firmware

void getEspUpdate(String esp_fw_url)
{
LOGI("getEspUpdate: %s", esp_fw_url);
LOGI("getEspUpdate: %s", esp_fw_url.c_str());

HTTPClient clientWeb;
WiFiClientSecure client;
Expand All @@ -1694,7 +1694,7 @@ void getEspUpdate(String esp_fw_url)

// Get file, just to check if each reachable
int resp = clientWeb.GET();
LOGD("Response: %s", resp);
LOGD("Response: %s", String(resp));
// If file is reachable, start downloading
if (resp == HTTP_CODE_OK)
{
Expand Down

0 comments on commit b883b22

Please sign in to comment.