update1.1

This commit is contained in:
richonguzman 2023-06-17 19:53:15 -04:00
parent 89176a8842
commit 333c059e98
3 changed files with 4 additions and 4 deletions

View file

@ -41,12 +41,12 @@
"timeout": 4
},
"syslog": {
"active": true,
"active": false,
"server": "192.168.20.10",
"port": 514
},
"other": {
"beaconInterval": 5,
"beaconInterval": 15,
"rememberStationTime": 30
},
"bme": {

View file

@ -20,7 +20,7 @@ Configuration Config;
WiFiClient espClient;
String versionDate = "2023.06.17";
String versionDate = "2023.06.18";
int myWiFiAPIndex = 0;
int myWiFiAPSize = Config.wifiAPs.size();
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];

View file

@ -26,7 +26,7 @@ namespace APRS_IS_Utils {
void connect(){
int count = 0;
String aprsauth;
Serial.print("Connecting to APRS-IS ... ");
Serial.print("Connecting to APRS-IS ... ");
while (!espClient.connect(Config.aprs_is.server.c_str(), Config.aprs_is.port) && count < 20) {
Serial.println("Didn't connect with server...");
delay(1000);