Skip to content

Commit

Permalink
testing backupDigiMode
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed May 22, 2024
1 parent adf4c1f commit 35fbd7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aprs_is_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace APRS_IS_Utils {
wifiState = "OK";
} else {
if (backUpDigiMode) {
wifiState = "DI";
wifiState = "--";
} else {
wifiState = "AP";
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace Utils {
if (!WiFiConnected) {
return "IP : 192.168.4.1";
} else if (backUpDigiMode) {
return "- BackUp Digi Mode -";
return "- BACKUP DIGI MODE -";
} else {
return "IP : " + String(WiFi.localIP()[0]) + "." + String(WiFi.localIP()[1]) + "." + String(WiFi.localIP()[2]) + "." + String(WiFi.localIP()[3]);
}
Expand Down

0 comments on commit 35fbd7a

Please sign in to comment.