esp32_loraprs/README.md

34 wiersze
2.4 KiB
Markdown
Czysty Zwykły widok Historia

2019-04-26 11:19:24 +00:00
# Experimental LoRa APRS ESP32 APRSDroid bluetooth modem and LoRa APRS-IS iGate
2019-04-26 11:17:22 +00:00
Tiny experimental amateur radio esp32 based LoRa APRSDroid bluetooth modem and iGate server.
2019-04-25 06:46:12 +00:00
Can be used in two modes:
2019-04-26 11:17:22 +00:00
- **as LoRa APRS client**, you need to use APRSDroid application, connect to the modem using bluetooth, data will be re-transmitted through the LoRA radio, this is similar to APRSDroid micromodem - https://unsigned.io/micromodem/, received data will be sent back to the APRSDroid using bluetooth
- **as a LoRa APRS iGate server**, which connects to your WiFI and forwards received LoRA APRS positions into the APRS-IS network, it also reports client signal level, by appending it into the APRS comment
2019-04-25 06:46:12 +00:00
# Software Dependencies
- espressif/arduino-esp32 library (install using arduino library manager)
- sandeepmistry/arduino-LoRa (install using arduino library manager)
# Software Setup
2019-04-26 11:19:24 +00:00
- when setting up APRSDroid, use **"TNC (plaintext TNC2)"** connection protocol in Connection Preferences -> Connection Protocol
2019-04-25 06:46:12 +00:00
- go to esp32_loraprs.ino and make next changes based on your requirements
- comment out / remove LORAPRS_CLIENT define if you are planning to run server mode iGate
- for server mode fill LORAPRS_WIFI_SSID and LORAPRS_WIFI_KEY with your WiFI AP data
- for server mode fill LORAPRS_LOGIN and LORAPRS_PASS with APRS-IS login callsign and pass
2019-04-26 11:19:24 +00:00
- change LORAPRS_FREQ if you are planning to use different frequency, currently it is set to **432.500MHz**, which is 70cm band APRS frequency in IARU-1 region, see http://info.aprs.net/index.php?title=Frequencies
2019-04-25 06:46:12 +00:00
- if you are planning to use different esp32 pinouts for lora and/or different LoRA spread factor / bandwidth then modify loraprs.h
- lora module CfgPinSs, pin 5
- lora module CfgPinRst, pin 26
- lora module CfgPinDio0, pin 14
- lora bandwidth CfgBw, 20 kHz (to fit into standard 25 kHz channel)
2019-04-26 07:09:59 +00:00
- lora spread factor CfgSpread, 11 (down to -17.5dB)
- lora coding rate CfgCodingRate, 7
2019-04-25 06:46:12 +00:00
- lora output power CfgPower, 20 (set to maximum 20 dBm ~ 100mW, change to lower value if needed)
2019-04-25 07:17:45 +00:00
- use 80 MHz ESP32 frequency in Arduino, it will prolong battery life when operating portable, higher speed is not needed
2019-04-26 10:59:39 +00:00
# Test Results
2019-04-26 11:17:22 +00:00
- **About 4 km** when server is 30m above the ground and client is 2m above the ground
- **About 13 km** when server is 30m above the ground and client is at some higher point ~40m above the ground
2019-04-26 10:59:39 +00:00
# Hardware Photos