minimo orden
This commit is contained in:
parent
61240caf31
commit
d4f6f654bb
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue