From d84d26f4b28689c4e1c9810360a229b1867c36ee Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sun, 26 Mar 2023 18:37:42 -0300 Subject: [PATCH] 1.2 --- src/LoRa_APRS_iGate.cpp | 2 +- src/iGate_config_OLD.h | 15 +++------------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index df4514d..0e04b32 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -209,7 +209,7 @@ void loop() { Serial.println("---- Sending iGate Beacon ----"); //String iGateBeaconPacket = Config.callsign + ">APRS,TCPIP*,qAC,CHILE:=" + currentWiFi->latitude + "L" + currentWiFi->longitude + "&" + Config.comment; String iGateBeaconPacket = Config.callsign + ">APRS,TCPIP*,qAC,CHILE:=" + Latitude + "L" + Longitude + "&" + Config.comment + "\n"; - Serial.println(iGateBeaconPacket); + //Serial.println(iGateBeaconPacket); espClient.write(iGateBeaconPacket.c_str()); lastTxTime = millis(); display_toggle(true); diff --git a/src/iGate_config_OLD.h b/src/iGate_config_OLD.h index dbb92c0..ac1d206 100644 --- a/src/iGate_config_OLD.h +++ b/src/iGate_config_OLD.h @@ -3,19 +3,10 @@ #include -//#define VERSION "V.0.0.1" //MEGA BETA +#define WifiCheckInterval 60000 // wificheck after one minute +const String Latitude = "3302.02S"; // write your own iGate latitude and longitude +const String Longitude = "07134.42W"; //#define BeaconInterval 900000 // 15 minutes = 900000 seg -#define WifiCheckInterval 60000 // wificheck after one minute - -//const String AprsSoftwareName = "ESP32_LoRa_iGate"; -//const String AprsSoftwareVersion = "0.0.9"; - -//const String iGateCallsign = "CD2RXU-11"; // use your own iGate Callsign -//const int AprsReportingDistance = 20; // kms -//const String AprsFilter = "t/m/" + iGateCallsign + "/" + (String)AprsReportingDistance; - -const String Latitude = "3302.02S"; // write your own iGate latitude and longitude -const String Longitude = "07134.42W"; #endif \ No newline at end of file