betaTest1

This commit is contained in:
richonguzman 2023-03-27 14:25:15 -03:00
parent c8940f4d30
commit ee75052742
2 changed files with 12 additions and 12 deletions

View File

@ -1,23 +1,23 @@
{ {
"callsign": "CD2RXU-11", "callsign": "NOCALL-10",
"comment": "LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate", "comment": "LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate",
"beacon_interval": 15, "beacon_interval": 15,
"wifi": { "wifi": {
"AP": [ "AP": [
{ "SSID": "Jimenicita", { "SSID": "WiFi_AP_1",
"Password": "mg6wyMhqRnxk", "Password": "password_WiFi_1",
"Latitude": -33.0312173, "Latitude": 0.0000000,
"Longitude": -71.5795816 "Longitude": 0.0000000
}, },
{ "SSID": "Richon", { "SSID": "WiFi_AP_2",
"Password": "k4fPnmg5qnyf", "Password": "password_WiFi_2",
"Latitude": -33.0337121, "Latitude": 0.0000000,
"Longitude": -71.5738217 "Longitude": 0.0000000
} }
] ]
}, },
"aprs_is": { "aprs_is": {
"passcode": "23201", "passcode": "",
"server": "soam.aprs2.net", "server": "soam.aprs2.net",
"port": 14580, "port": 14580,
"software_name" : "ESP32_LoRa_iGate", "software_name" : "ESP32_LoRa_iGate",
@ -32,7 +32,7 @@
"power": 20 "power": 20
}, },
"display": { "display": {
"always_on": false, "always_on": true,
"timeout": 2 "timeout": 2
} }
} }

View File

@ -20,7 +20,7 @@ static bool beacon_update = true;
unsigned long previousWiFiMillis = 0; unsigned long previousWiFiMillis = 0;
static uint32_t lastRxTxTime = millis(); static uint32_t lastRxTxTime = millis();
static int myWiFiAPIndex = 1; static int myWiFiAPIndex = 0;
int myWiFiAPSize = Config.wifiAPs.size(); int myWiFiAPSize = Config.wifiAPs.size();
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex]; WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];