Skip to content

Commit

Permalink
Merge pull request #382 from DCC-EX/devel-ash-temp0102
Browse files Browse the repository at this point in the history
Display network IP fix
  • Loading branch information
Ash-4 authored Jan 3, 2024
2 parents a78a14b + 957ad07 commit 10c67c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GITHUB_SHA.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define GITHUB_SHA "devel-202312251647Z"
#define GITHUB_SHA "devel-202401030135Z"
2 changes: 1 addition & 1 deletion WifiESP32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ bool WifiESP::setup(const char *SSid,
if (WiFi.status() == WL_CONNECTED) {
// DIAG(F("Wifi STA IP %s"),WiFi.localIP().toString().c_str());
DIAG(F("Wifi in STA mode"));
LCD(7, F("IP: %s"), WiFi.softAPIP().toString().c_str());
LCD(7, F("IP: %s"), WiFi.localIP().toString().c_str());
wifiUp = true;
} else {
DIAG(F("Could not connect to Wifi SSID %s"),SSid);
Expand Down
3 changes: 2 additions & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

#include "StringFormatter.h"

#define VERSION "5.2.17ethCdf"
#define VERSION "5.2.18ethCdf"
// 5.2.18 - Display network IP fix
// 5.2.17 - ESP32 simplify network logic
// 5.2.16 - Bugfix to allow for devices using the EX-IOExpander protocol to have no analogue or no digital pins
// df - I2C DFPlayper capability
Expand Down

0 comments on commit 10c67c9

Please sign in to comment.