Update README.md

pull/5/head
sh123 2019-04-25 09:46:12 +03:00 zatwierdzone przez GitHub
rodzic ed48819ae8
commit 43953b409c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 25 dodań i 2 usunięć

Wyświetl plik

@ -1,2 +1,25 @@
# esp32_loraprs
LoRA APRSDroid bluetooth modem and iGate
# Experimental LoRA APRS ESP32 APRSDroid bluetooth modem and iGate
Tiny experimental amateur radio esp32 based LoRA (RA-01) APRSDroid bluetooth modem and iGate.
Can be used in two modes:
- as a client, where 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, received data will be sent back to the APRSDroid using bluetooth
- as a server, which connects to your WiFI and sends received LoRA APRS positions into APRS-IS network
# Software Dependencies
- espressif/arduino-esp32 library (install using arduino library manager)
- sandeepmistry/arduino-LoRa (install using arduino library manager)
# Software Setup
- when setting up APRSDroid, use "TNC (plaintext TNC2)" connection protocol in Connection Preferences -> Connection Protocol
- 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
- change LORAPRS_FREQ if you are planning to use different frequency, currently it is set to 432.500, which is 70cm band APRS frequency in IARU-1 region, see http://info.aprs.net/index.php?title=Frequencies
- 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)
- lora spread factor CfgSpread, 9 (seems to be optimal between signal level and transmit time)
- lora output power CfgPower, 20 (set to maximum 20 dBm ~ 100mW, change to lower value if needed)