This commit is contained in:
parent
fd534ec533
commit
e7c69c3412
|
|
@ -1,9 +1,12 @@
|
|||
# LoRa_APRS_iGate
|
||||
|
||||
DIY version of LoRa APRS iGATE with ESP32 and SX1278 LoRa Module
|
||||
LoRa APRS iGATE for:
|
||||
|
||||
- LILYGO ESP32 LoRa v2-1-1.6
|
||||
- ESP32 Wroom Dev + SX1278 LoRa Module for a DIY Version
|
||||
|
||||
STILL IN BETA TESTING!!!
|
||||
|
||||
Achievements:
|
||||
- listening to LoRa packets the same as messages for Stations/Callsing in near 50Kms.
|
||||
- transmiting messages listened from APRS-IS to RF/UHF/LoRa
|
||||
- transmiting messages listened from APRS-IS to LoRa
|
||||
|
|
@ -16,5 +16,7 @@ monitor_speed = 115200
|
|||
lib_deps =
|
||||
bblanchon/ArduinoJson@^6.20.1
|
||||
sandeepmistry/LoRa@^0.8.0
|
||||
adafruit/Adafruit GFX Library @ 1.11.5
|
||||
adafruit/Adafruit SSD1306 @ 2.5.7
|
||||
platform_packages =
|
||||
platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git
|
||||
|
|
|
|||
|
|
@ -3,27 +3,30 @@
|
|||
|
||||
#include <Arduino.h>
|
||||
|
||||
#define VERSION "V.0.0.1" //MEGA BETA
|
||||
|
||||
#define WIFI_SSID "Richon"
|
||||
#define WIFI_PASSWORD "k4fPnmg5qnyf"
|
||||
|
||||
#define BeaconInterval 900000 // 15 minutes = 900000 seg
|
||||
#define WifiCheckInterval 60000 // wificheck after one minute
|
||||
|
||||
const String iGateCallsign = "CD2RXU-10"; // use your own iGate Callsign
|
||||
#define EcoModeDisplayTime 5000 // after 5 segs Display goes off
|
||||
|
||||
const String iGateCallsign = "CD2RXU-11"; // 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";
|
||||
const int AprsServerPort = 14580;
|
||||
const String AprsSoftwareName = "ESP32_LoRa_iGate";
|
||||
const String AprsSoftwareVersion = "0.1.0";
|
||||
const int AprsReportingDistance = 50; // kms
|
||||
const String AprsSoftwareVersion = "0.0.9";
|
||||
const int AprsReportingDistance = 20; // kms
|
||||
const String AprsFilter = "t/m/" + iGateCallsign + "/" + (String)AprsReportingDistance;
|
||||
|
||||
const String iGateComment = "DIY ESP32 LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate";
|
||||
const String iGateComment = "LoRa_APRS_iGate https://github.com/richonguzman/LoRa_APRS_iGate";
|
||||
|
||||
const String Latitude = "3302.03S"; // write your own iGate latitude and longitude
|
||||
const String Latitude = "3302.02S"; // write your own iGate latitude and longitude
|
||||
const String Longitude = "07134.42W";
|
||||
|
||||
String iGateBeaconPacket = iGateCallsign + ">APRS,TCPIP*,qAC,CHILE:=" + Latitude + "L" + Longitude+ "&" + iGateComment + "\n";
|
||||
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
@ -26,4 +26,7 @@ REST 14
|
|||
GND -
|
||||
*/
|
||||
|
||||
#define OLED_SDA 21
|
||||
#define OLED_SCL 22
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue