diff --git a/src/LoRa_APRS_iGate_DIY.cpp b/src/LoRa_APRS_iGate_DIY.cpp index 41f4c85..ed487fc 100644 --- a/src/LoRa_APRS_iGate_DIY.cpp +++ b/src/LoRa_APRS_iGate_DIY.cpp @@ -5,7 +5,7 @@ #include "iGate_config.h" #include "pins_config.h" -#define VERSION "V.0.1.0" +#define VERSION "V.0.0.9" //BETA STILL WiFiClient espClient; uint32_t lastTxTime = 0; diff --git a/src/iGate_config.h b/src/iGate_config.h index 811c5e9..9dab919 100644 --- a/src/iGate_config.h +++ b/src/iGate_config.h @@ -9,13 +9,6 @@ #define BeaconInterval 900000 // 15 minutes = 900000 seg #define WifiCheckInterval 60000 // wificheck after one minute -//String callsign_igate = "CD2RXU-10"; -//String passcode_igate = "23201"; - -//const String SERVER = "brazil.aprs2.net"; // write the address of the aprs server -//const int APRSPORT = 14579; // write the aprs server APRSPORT - - const String iGateCallsign = "CD2RXU-10"; // use your own iGate Callsign const String iGatePasscode = "23201"; // use your one iGate Callsign Passcode const String AprsServer = "radioaficion.pro"; // write the address of the aprs server near you , like "brazil.aprs2.net"; @@ -28,7 +21,7 @@ const String AprsFilter = "t/m/" + iGateCallsign + "/" + (String)Apr const String iGateComment = "DIY ESP32 LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate"; const String Latitude = "3302.03S"; // write your own iGate latitude and longitude -const String Longitude = "07134.42W"; +const String Longitude = "07134.42W"; String iGateBeaconPacket = iGateCallsign + ">APRS,TCPIP*,qAC,CHILE:=" + Latitude + "L" + Longitude+ "&" + iGateComment + "\n";