diff --git a/README.md b/README.md index 8f28456..60bf02c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ This LORA APRS Tracker will work with very cheep hardware (amazon, ebay or aliex This project uses Enconded APRS GPS packet to extends range by saving bytes (increased battery life, higher chances of good packet reception (increased range), lower probability of packet collisions (more channel capacity) and 1 Watt LoRa Module (over the usual 0.1 Watt in commercial boards like the LILYGO T-Beam V.1). -Achievements: ______________________________________________________________________ Achievements: @@ -25,6 +24,7 @@ Achievements: - send enconded GPS data packet for shorter and realiable comunication. To add (shortly) working on it + - turn_slope for course angle smartbeacon - oled screen (allready bought ... and waiting.. ) - SendAltitude: encoded instead of just "Course+Speed" without adding lenght to the APRS packet. diff --git a/src/Lora_1W_APRS_Tracker.cpp b/src/Lora_1W_APRS_Tracker.cpp index d281293..77b4fbe 100644 --- a/src/Lora_1W_APRS_Tracker.cpp +++ b/src/Lora_1W_APRS_Tracker.cpp @@ -18,14 +18,13 @@ https://github.com/sh123/esp32_loraprs #include "lora_config.h" #include "beacon_config.h" -#define VERSION "2023.01.28" // BETA!!! +#define VERSION "2023.01.28-2" // BETA!!! SX1268 radio = new Module(NSS, DIO1, NRST, BUSY); HardwareSerial neo6m_gps(1); TinyGPSPlus gps; OneButton UserButton1 = OneButton(BUTTON1_PIN, true, true); - String CurrentUser[10]; static bool send_update = true; diff --git a/src/pins_config.h b/src/pins_config.h index 331129e..d829e98 100644 --- a/src/pins_config.h +++ b/src/pins_config.h @@ -5,10 +5,10 @@ #define GPS_RXD 17 /* GPS NEO-6M v.2----> ESP32 -VCC 3.3V -GND GND -TXD 16 -RXD 17 +VCC 3.3V +GND GND +TXD 16 +RXD 17 */ #define NSS 5 // Conection Pinout Ebyte E22 400M30S LoRa Module @@ -19,18 +19,18 @@ RXD 17 #define TXEN 25 /* 400M30S-------------------> ESP32 -1-2-3-4-5-11-12-20-22 GND -6 RXEN 32 -7 TXEN 25 +1-2-3-4-5-11-12-20-22 GND +6 RXEN 32 +7 TXEN 25 8 X (not connected) - -9-10 5V add 100uf (electro) + 100nF (polyester) from 5V to ground near pin 9-10 -13 DIO1 12 -14 BUSY 14 -15 NRST 27 -16 MISO 19 -17 MOSI 23 -18 SCK 18 -19 NSS 5 +9-10 5V add 100uf (electro) + 100nF (polyester) from 5V to ground near pin 9-10 +13 DIO1 12 +14 BUSY 14 +15 NRST 27 +16 MISO 19 +17 MOSI 23 +18 SCK 18 +19 NSS 5 21 ANTENA */