Compare commits

...

3 commits

Author SHA1 Message Date
Peter Buchegger 049b08b7a8
Merge a7ecf4dcae into d97a929848 2025-09-22 19:11:00 +05:30
Peter Buchegger d97a929848
Update README.md 2025-09-14 14:34:52 +02:00
Peter Buchegger a7ecf4dcae first try 2023-11-25 15:08:25 +01:00
3 changed files with 39 additions and 1 deletions

View file

@ -1,3 +1,14 @@
# Status update September 2025
Over the past year, my focus has shifted to other projects, and Ive decided its 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 Id 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 youre 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.

View file

@ -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

View file

@ -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