mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-03-08 06:23:53 +01:00
ESP32 DIY 1W LoRa added
This commit is contained in:
parent
9faebc334b
commit
953b5e71e5
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"callsign": "NOCALL-10",
|
||||
"callsign": "CA2RXU-13",
|
||||
"stationMode": 2,
|
||||
"iGateComment": "LoRa_APRS_iGate",
|
||||
"wifi": {
|
||||
"AP": [
|
||||
{ "ssid": "WIFI_1",
|
||||
"password": "wifi_1_password",
|
||||
"latitude": 0.0000000,
|
||||
"longitude": 0.0000000
|
||||
{ "ssid": "Richon",
|
||||
"password": "k4fPnmg5qnyf",
|
||||
"latitude": -33.0437718,
|
||||
"longitude": -71.5837141
|
||||
},
|
||||
{ "ssid": "WIFI_2",
|
||||
"password": "wifi_2_password",
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
"longitude": 0.0000000
|
||||
},
|
||||
"aprs_is": {
|
||||
"passcode": "XYZWV",
|
||||
"passcode": "23204",
|
||||
"server": "soam.aprs2.net",
|
||||
"port": 14580,
|
||||
"reportingDistance": 30
|
||||
|
|
|
|||
|
|
@ -161,7 +161,9 @@ namespace LoRa_Utils {
|
|||
}
|
||||
#endif
|
||||
#ifndef PinPointApp
|
||||
Serial.println("(RSSI:" +String(rssi) + " / SNR:" + String(snr) + " / FreqErr:" + String(freqError) + ")");
|
||||
if (loraPacket!="") {
|
||||
Serial.println("(RSSI:" +String(rssi) + " / SNR:" + String(snr) + " / FreqErr:" + String(freqError) + ")");
|
||||
}
|
||||
#endif
|
||||
if (Config.syslog.active && (stationMode==1 || stationMode==2 || (stationMode==5 && WiFi.status()==WL_CONNECTED)) && loraPacket!="") {
|
||||
SYSLOG_Utils::log("LoRa Rx", loraPacket, rssi, snr, freqError);
|
||||
|
|
|
|||
Loading…
Reference in a new issue