mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-16 10:14:46 +01:00
update1.1
This commit is contained in:
parent
89176a8842
commit
333c059e98
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue