├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── commit.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── common_settings.ini ├── data └── tracker_conf.json ├── data_embed ├── bootstrap.css ├── bootstrap.js ├── favicon.png ├── index.html ├── script.js └── style.css ├── extra └── turn_slope_calculations.xlsx ├── images ├── OledScreen2.jpeg ├── Web001-Beacons.png ├── Web002-StationConfig.png ├── Web003-Display.png ├── Web004-LoRa.png ├── Web005-WxTelemetry.png ├── Web006-Bluetooth.png ├── Web007-Battery.png ├── Web008-Notifications.png ├── Web009-PttTrigger.png ├── Web010-Winlink.png ├── Web011-WiFiAP.png ├── WebFlasherTrackerGithub.png ├── github-sponsors.png └── paypalme.png ├── include ├── battery_utils.h ├── ble_utils.h ├── bluetooth_utils.h ├── button_utils.h ├── configuration.h ├── custom_characters.h ├── custom_colors.h ├── display.h ├── gps_utils.h ├── joystick_utils.h ├── keyboard_utils.h ├── kiss_utils.h ├── lora_utils.h ├── menu_utils.h ├── msg_utils.h ├── notification_utils.h ├── power_utils.h ├── sleep_utils.h ├── smartbeacon_utils.h ├── station_utils.h ├── telemetry_utils.h ├── touch_utils.h ├── utils.h ├── web_utils.h ├── wifi_utils.h ├── winlink_utils.h └── wx_utils.h ├── platformio.ini ├── src ├── LoRa_APRS_Tracker.cpp ├── battery_utils.cpp ├── ble_utils.cpp ├── bluetooth_utils.cpp ├── button_utils.cpp ├── configuration.cpp ├── display.cpp ├── gps_utils.cpp ├── joystick_utils.cpp ├── keyboard_utils.cpp ├── kiss_utils.cpp ├── lora_utils.cpp ├── menu_utils.cpp ├── msg_utils.cpp ├── notification_utils.cpp ├── power_utils.cpp ├── sleep_utils.cpp ├── smartbeacon_utils.cpp ├── station_utils.cpp ├── telemetry_utils.cpp ├── touch_utils.cpp ├── utils.cpp ├── web_utils.cpp ├── wifi_utils.cpp ├── winlink_utils.cpp └── wx_utils.cpp ├── tools └── compress.py └── variants ├── ESP32S3_DIY_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── ESP32S3_DIY_LoRa_GPS_915 ├── board_pinout.h └── platformio.ini ├── ESP32_DIY_1W_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── ESP32_DIY_1W_LoRa_GPS_915 ├── board_pinout.h └── platformio.ini ├── ESP32_DIY_1W_LoRa_GPS_LLCC68 ├── board_pinout.h └── platformio.ini ├── ESP32_DIY_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── ESP32_DIY_LoRa_GPS_915 ├── board_pinout.h └── platformio.ini ├── F4GOH_1W_LoRa_Tracker ├── board_pinout.h └── platformio.ini ├── F4GOH_1W_LoRa_Tracker_LLCC68 ├── board_pinout.h └── platformio.ini ├── OE5HWN_MeshCom ├── board_pinout.h └── platformio.ini ├── QRPLabs_LightTracker_Plus_1_0 ├── board_pinout.h └── platformio.ini ├── RPC_Electronics_1W_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── TROY_LoRa_APRS ├── board_pinout.h └── platformio.ini ├── Wemos_ESP32_Bat_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── esp32_c3_DIY_LoRa_GPS ├── board_pinout.h └── platformio.ini ├── esp32_c3_DIY_LoRa_GPS_915 ├── board_pinout.h └── platformio.ini ├── heltec-lora32-v2_GPS ├── board_pinout.h └── platformio.ini ├── heltec-lora32-v2_GPS_915 ├── board_pinout.h └── platformio.ini ├── heltec-lora32-v2_TNC ├── board_pinout.h └── platformio.ini ├── heltec_ht-ct62_GPS ├── board_pinout.h └── platformio.ini ├── heltec_wifi_lora_32_v3_2_GPS ├── board_pinout.h └── platformio.ini ├── heltec_wifi_lora_32_v3_2_TNC ├── board_pinout.h └── platformio.ini ├── heltec_wifi_lora_32_v3_GPS ├── board_pinout.h └── platformio.ini ├── heltec_wifi_lora_32_v3_TNC ├── board_pinout.h └── platformio.ini ├── heltec_wireless_stick_lite_v3_GPS_display ├── board_pinout.h └── platformio.ini ├── heltec_wireless_tracker ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v0_7 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1_2 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1_2_915 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1_2_SX1262 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1_915 ├── board_pinout.h └── platformio.ini ├── ttgo-t-beam-v1_SX1268 ├── board_pinout.h └── platformio.ini ├── ttgo-t-lora32-v2_1_GPS ├── board_pinout.h └── platformio.ini ├── ttgo-t-lora32-v2_1_GPS_915 ├── board_pinout.h └── platformio.ini ├── ttgo-t-lora32-v2_1_TNC ├── board_pinout.h └── platformio.ini ├── ttgo-t-lora32-v2_1_TNC_915 ├── board_pinout.h └── platformio.ini ├── ttgo_t_beam_s3_SUPREME_v3 ├── board_pinout.h └── platformio.ini ├── ttgo_t_deck_GPS ├── board_pinout.h └── platformio.ini └── ttgo_t_deck_plus ├── board_pinout.h └── platformio.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.github/workflows/commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/README.md -------------------------------------------------------------------------------- /common_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/common_settings.ini -------------------------------------------------------------------------------- /data/tracker_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data/tracker_conf.json -------------------------------------------------------------------------------- /data_embed/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/bootstrap.css -------------------------------------------------------------------------------- /data_embed/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/bootstrap.js -------------------------------------------------------------------------------- /data_embed/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/favicon.png -------------------------------------------------------------------------------- /data_embed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/index.html -------------------------------------------------------------------------------- /data_embed/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/script.js -------------------------------------------------------------------------------- /data_embed/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/data_embed/style.css -------------------------------------------------------------------------------- /extra/turn_slope_calculations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/extra/turn_slope_calculations.xlsx -------------------------------------------------------------------------------- /images/OledScreen2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/OledScreen2.jpeg -------------------------------------------------------------------------------- /images/Web001-Beacons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web001-Beacons.png -------------------------------------------------------------------------------- /images/Web002-StationConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web002-StationConfig.png -------------------------------------------------------------------------------- /images/Web003-Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web003-Display.png -------------------------------------------------------------------------------- /images/Web004-LoRa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web004-LoRa.png -------------------------------------------------------------------------------- /images/Web005-WxTelemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web005-WxTelemetry.png -------------------------------------------------------------------------------- /images/Web006-Bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web006-Bluetooth.png -------------------------------------------------------------------------------- /images/Web007-Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web007-Battery.png -------------------------------------------------------------------------------- /images/Web008-Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web008-Notifications.png -------------------------------------------------------------------------------- /images/Web009-PttTrigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web009-PttTrigger.png -------------------------------------------------------------------------------- /images/Web010-Winlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web010-Winlink.png -------------------------------------------------------------------------------- /images/Web011-WiFiAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/Web011-WiFiAP.png -------------------------------------------------------------------------------- /images/WebFlasherTrackerGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/WebFlasherTrackerGithub.png -------------------------------------------------------------------------------- /images/github-sponsors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/github-sponsors.png -------------------------------------------------------------------------------- /images/paypalme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/images/paypalme.png -------------------------------------------------------------------------------- /include/battery_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/battery_utils.h -------------------------------------------------------------------------------- /include/ble_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/ble_utils.h -------------------------------------------------------------------------------- /include/bluetooth_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/bluetooth_utils.h -------------------------------------------------------------------------------- /include/button_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/button_utils.h -------------------------------------------------------------------------------- /include/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/configuration.h -------------------------------------------------------------------------------- /include/custom_characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/custom_characters.h -------------------------------------------------------------------------------- /include/custom_colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/custom_colors.h -------------------------------------------------------------------------------- /include/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/display.h -------------------------------------------------------------------------------- /include/gps_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/gps_utils.h -------------------------------------------------------------------------------- /include/joystick_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/joystick_utils.h -------------------------------------------------------------------------------- /include/keyboard_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/keyboard_utils.h -------------------------------------------------------------------------------- /include/kiss_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/kiss_utils.h -------------------------------------------------------------------------------- /include/lora_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/lora_utils.h -------------------------------------------------------------------------------- /include/menu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/menu_utils.h -------------------------------------------------------------------------------- /include/msg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/msg_utils.h -------------------------------------------------------------------------------- /include/notification_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/notification_utils.h -------------------------------------------------------------------------------- /include/power_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/power_utils.h -------------------------------------------------------------------------------- /include/sleep_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/sleep_utils.h -------------------------------------------------------------------------------- /include/smartbeacon_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/smartbeacon_utils.h -------------------------------------------------------------------------------- /include/station_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/station_utils.h -------------------------------------------------------------------------------- /include/telemetry_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/telemetry_utils.h -------------------------------------------------------------------------------- /include/touch_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/touch_utils.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/web_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/web_utils.h -------------------------------------------------------------------------------- /include/wifi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/wifi_utils.h -------------------------------------------------------------------------------- /include/winlink_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/winlink_utils.h -------------------------------------------------------------------------------- /include/wx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/include/wx_utils.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/LoRa_APRS_Tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/LoRa_APRS_Tracker.cpp -------------------------------------------------------------------------------- /src/battery_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/battery_utils.cpp -------------------------------------------------------------------------------- /src/ble_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/ble_utils.cpp -------------------------------------------------------------------------------- /src/bluetooth_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/bluetooth_utils.cpp -------------------------------------------------------------------------------- /src/button_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/button_utils.cpp -------------------------------------------------------------------------------- /src/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/configuration.cpp -------------------------------------------------------------------------------- /src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/display.cpp -------------------------------------------------------------------------------- /src/gps_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/gps_utils.cpp -------------------------------------------------------------------------------- /src/joystick_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/joystick_utils.cpp -------------------------------------------------------------------------------- /src/keyboard_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/keyboard_utils.cpp -------------------------------------------------------------------------------- /src/kiss_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/kiss_utils.cpp -------------------------------------------------------------------------------- /src/lora_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/lora_utils.cpp -------------------------------------------------------------------------------- /src/menu_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/menu_utils.cpp -------------------------------------------------------------------------------- /src/msg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/msg_utils.cpp -------------------------------------------------------------------------------- /src/notification_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/notification_utils.cpp -------------------------------------------------------------------------------- /src/power_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/power_utils.cpp -------------------------------------------------------------------------------- /src/sleep_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/sleep_utils.cpp -------------------------------------------------------------------------------- /src/smartbeacon_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/smartbeacon_utils.cpp -------------------------------------------------------------------------------- /src/station_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/station_utils.cpp -------------------------------------------------------------------------------- /src/telemetry_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/telemetry_utils.cpp -------------------------------------------------------------------------------- /src/touch_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/touch_utils.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/web_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/web_utils.cpp -------------------------------------------------------------------------------- /src/wifi_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/wifi_utils.cpp -------------------------------------------------------------------------------- /src/winlink_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/winlink_utils.cpp -------------------------------------------------------------------------------- /src/wx_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/src/wx_utils.cpp -------------------------------------------------------------------------------- /tools/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/tools/compress.py -------------------------------------------------------------------------------- /variants/ESP32S3_DIY_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32S3_DIY_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32S3_DIY_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32S3_DIY_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32S3_DIY_LoRa_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32S3_DIY_LoRa_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32S3_DIY_LoRa_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32S3_DIY_LoRa_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS_LLCC68/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS_LLCC68/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32_DIY_1W_LoRa_GPS_LLCC68/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_1W_LoRa_GPS_LLCC68/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32_DIY_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32_DIY_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/ESP32_DIY_LoRa_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_LoRa_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ESP32_DIY_LoRa_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ESP32_DIY_LoRa_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/F4GOH_1W_LoRa_Tracker/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/F4GOH_1W_LoRa_Tracker/board_pinout.h -------------------------------------------------------------------------------- /variants/F4GOH_1W_LoRa_Tracker/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/F4GOH_1W_LoRa_Tracker/platformio.ini -------------------------------------------------------------------------------- /variants/F4GOH_1W_LoRa_Tracker_LLCC68/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/F4GOH_1W_LoRa_Tracker_LLCC68/board_pinout.h -------------------------------------------------------------------------------- /variants/F4GOH_1W_LoRa_Tracker_LLCC68/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/F4GOH_1W_LoRa_Tracker_LLCC68/platformio.ini -------------------------------------------------------------------------------- /variants/OE5HWN_MeshCom/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/OE5HWN_MeshCom/board_pinout.h -------------------------------------------------------------------------------- /variants/OE5HWN_MeshCom/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/OE5HWN_MeshCom/platformio.ini -------------------------------------------------------------------------------- /variants/QRPLabs_LightTracker_Plus_1_0/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/QRPLabs_LightTracker_Plus_1_0/board_pinout.h -------------------------------------------------------------------------------- /variants/QRPLabs_LightTracker_Plus_1_0/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/QRPLabs_LightTracker_Plus_1_0/platformio.ini -------------------------------------------------------------------------------- /variants/RPC_Electronics_1W_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/RPC_Electronics_1W_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/RPC_Electronics_1W_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/RPC_Electronics_1W_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/TROY_LoRa_APRS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/TROY_LoRa_APRS/board_pinout.h -------------------------------------------------------------------------------- /variants/TROY_LoRa_APRS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/TROY_LoRa_APRS/platformio.ini -------------------------------------------------------------------------------- /variants/Wemos_ESP32_Bat_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/Wemos_ESP32_Bat_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/Wemos_ESP32_Bat_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/Wemos_ESP32_Bat_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/esp32_c3_DIY_LoRa_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/esp32_c3_DIY_LoRa_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/esp32_c3_DIY_LoRa_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/esp32_c3_DIY_LoRa_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/esp32_c3_DIY_LoRa_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/esp32_c3_DIY_LoRa_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/esp32_c3_DIY_LoRa_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/esp32_c3_DIY_LoRa_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_TNC/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_TNC/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec-lora32-v2_TNC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec-lora32-v2_TNC/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_ht-ct62_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_ht-ct62_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_ht-ct62_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_ht-ct62_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_2_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_2_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_2_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_2_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_2_TNC/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_2_TNC/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_2_TNC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_2_TNC/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_TNC/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_TNC/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wifi_lora_32_v3_TNC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wifi_lora_32_v3_TNC/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wireless_stick_lite_v3_GPS_display/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wireless_stick_lite_v3_GPS_display/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wireless_stick_lite_v3_GPS_display/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wireless_stick_lite_v3_GPS_display/platformio.ini -------------------------------------------------------------------------------- /variants/heltec_wireless_tracker/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wireless_tracker/board_pinout.h -------------------------------------------------------------------------------- /variants/heltec_wireless_tracker/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/heltec_wireless_tracker/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v0_7/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v0_7/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v0_7/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v0_7/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2_915/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2_SX1262/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2_SX1262/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_2_SX1262/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_2_SX1262/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_915/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_SX1268/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_SX1268/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-beam-v1_SX1268/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-beam-v1_SX1268/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_GPS_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_GPS_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_GPS_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_GPS_915/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_TNC/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_TNC/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_TNC/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_TNC/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_TNC_915/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_TNC_915/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo-t-lora32-v2_1_TNC_915/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo-t-lora32-v2_1_TNC_915/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo_t_beam_s3_SUPREME_v3/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_beam_s3_SUPREME_v3/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo_t_beam_s3_SUPREME_v3/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_beam_s3_SUPREME_v3/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo_t_deck_GPS/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_deck_GPS/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo_t_deck_GPS/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_deck_GPS/platformio.ini -------------------------------------------------------------------------------- /variants/ttgo_t_deck_plus/board_pinout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_deck_plus/board_pinout.h -------------------------------------------------------------------------------- /variants/ttgo_t_deck_plus/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richonguzman/LoRa_APRS_Tracker/HEAD/variants/ttgo_t_deck_plus/platformio.ini --------------------------------------------------------------------------------