mirror of
https://github.com/lora-aprs/LoRa_APRS_Tracker.git
synced 2025-12-06 07:12:15 +01:00
Compare commits
3 commits
547d5961b0
...
049b08b7a8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
049b08b7a8 | ||
|
|
d97a929848 | ||
|
|
a7ecf4dcae |
11
README.md
11
README.md
|
|
@ -1,3 +1,14 @@
|
|||
# Status update – September 2025
|
||||
|
||||
Over the past year, my focus has shifted to other projects, and I’ve decided it’s time to close the chapter on this one. I will no longer provide updates or support, and the repository will be archived.
|
||||
|
||||
This project has been a fun journey, and I’d like to thank everyone who used, contributed, or shared feedback along the way. Your interest and support kept it alive far longer than I originally expected.
|
||||
|
||||
If you’re looking for a great alternative, I recommend [CA2RXU LoRa APRS Tracker/Station](https://github.com/richonguzman/LoRa_APRS_Tracker).
|
||||
|
||||
73,
|
||||
OE5BPA
|
||||
|
||||
# LoRa APRS Tracker
|
||||
|
||||
The LoRa APRS Tracker will work with very cheep hardware which you can buy from amazon, ebay or aliexpress.
|
||||
|
|
|
|||
|
|
@ -23,6 +23,10 @@ check_flags =
|
|||
cppcheck: --suppress=*:*.pio\* --inline-suppr -DCPPCHECK
|
||||
check_skip_packages = yes
|
||||
|
||||
[env:ttgo-t-beam-Supreme]
|
||||
board = esp32-s3-devkitc-1
|
||||
build_flags = -Werror -Wall -DTTGO_T_Beam_Supreme
|
||||
|
||||
[env:ttgo-t-beam-AXP2101-v1_2]
|
||||
board = ttgo-t-beam
|
||||
build_flags = -Werror -Wall -DTTGO_T_Beam_V1_2
|
||||
|
|
|
|||
25
src/pins.h
25
src/pins.h
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef PINS_H_
|
||||
#define PINS_H_
|
||||
|
||||
/*
|
||||
#undef OLED_SDA
|
||||
#undef OLED_SCL
|
||||
#undef OLED_RST
|
||||
|
|
@ -8,7 +9,7 @@
|
|||
#define OLED_SDA 21
|
||||
#define OLED_SCL 22
|
||||
#define OLED_RST 16
|
||||
|
||||
*/
|
||||
#define BUTTON_PIN 38 // The middle button GPIO on the T-Beam
|
||||
|
||||
#ifdef TTGO_T_Beam_V0_7
|
||||
|
|
@ -21,4 +22,26 @@
|
|||
#define GPS_TX 34
|
||||
#endif
|
||||
|
||||
#ifdef TTGO_T_Beam_Supreme
|
||||
#undef OLED_SDA
|
||||
#undef OLED_SCL
|
||||
#undef OLED_RST
|
||||
|
||||
#define OLED_SDA 17
|
||||
#define OLED_SCL 18
|
||||
#define OLED_RST 16
|
||||
|
||||
#define GPS_RX 9
|
||||
#define GPS_TX 8
|
||||
|
||||
#define LORA_SCK 12
|
||||
#define LORA_MISO 13
|
||||
#define LORA_MOSI 11
|
||||
#define LORA_CS 10
|
||||
#define RADIO_DIO0_PIN -1
|
||||
#define LORA_RST 5
|
||||
#define LORA_IRQ 1
|
||||
#define RADIO_BUSY_PIN 4
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue