2018-12-01 12:43:59 +01:00
|
|
|
First of all I want to thank OE1ACM Bernd for his approval to use his code for my experiments.
|
|
|
|
|
He is the author of BG_RF95!
|
|
|
|
|
|
2018-12-10 15:29:27 +01:00
|
|
|
<b>USER GUIDE of TTGO T-Beam LoRa APRS:</b><br>
|
2018-12-10 15:27:04 +01:00
|
|
|
<b>Callsign setting:</b><br>
|
|
|
|
|
If you start the FW for the first time you are asked to program your callsign and SSID(s).<br>
|
2018-12-10 15:30:21 +01:00
|
|
|
Once the callsign is programmed you can reenter the programming mode by pressing the BUTTON (GPIO39) for 3secs while switching on the tracker.<br>
|
2018-12-01 12:43:59 +01:00
|
|
|
|
2018-12-10 15:29:27 +01:00
|
|
|
The MODE of the tracker can now be changed by pressing button at <b>GPIO39 for 10secs</b>!<br>
|
|
|
|
|
<b>The modes are</b><br>
|
|
|
|
|
TRACKER ... normal APRS tracker<br>
|
|
|
|
|
WX&TRACKER ... alternate transmission of normal position packet and WX packet (if DHT22 is mounted)<br>
|
|
|
|
|
WX-MOVE ... only WX packets are sent but with position from GPSLED<br>
|
|
|
|
|
WX-FIXED ... only WX packets are transmitted but with fixed position given in Header-File<br>
|
|
|
|
|
|
|
|
|
|
<b>TTGO_T-Beam_LoRa_APRS.h</b><br>
|
|
|
|
|
All other user settings are still hardprogrammed and can be found in TTGO_T-Beam_LoRa_APRS.h<br>
|
|
|
|
|
|
2018-12-01 13:21:21 +01:00
|
|
|
<b>"sTable"</b> should contain the value for the primary or secondary symbol table<br>
|
2018-12-01 13:19:43 +01:00
|
|
|
<b>"sSymbol"</b> contains finally the symbol to be sent with the position report
|
2018-12-01 12:43:59 +01:00
|
|
|
|
2018-12-01 13:21:21 +01:00
|
|
|
<b>"wxTable"</b> should contain the value for the primary or secondary symbol table used for weather reports<br>
|
2018-12-01 21:31:34 +01:00
|
|
|
<b>"wxSymbol"</b> contains finally the symbol to be sent with the weather report
|
2018-12-01 12:43:59 +01:00
|
|
|
|
2018-12-01 13:21:21 +01:00
|
|
|
<b>"nextTX"</b> is the transmit intervall in ms (milli seconds) - don't use to short intervalls as it overloads the APRS servers<br>
|
2018-12-01 12:43:59 +01:00
|
|
|
60000L is a could starting point and means a intervall of 60secs or 1 minute.
|
2018-12-01 13:17:39 +01:00
|
|
|
|
2018-12-01 13:21:21 +01:00
|
|
|
the following lines are used to define the fixed position<br>
|
|
|
|
|
<b>#define LATITUDE "4813.62N"</b> // please in APRS notation DDMM.mmN or DDMM.mmS used for FIXED_POSITION<br>
|
2018-12-01 13:19:43 +01:00
|
|
|
<b>#define LONGITUDE "01539.85E"</b>
|
2018-12-01 13:17:39 +01:00
|
|
|
|
2018-12-01 21:31:34 +01:00
|
|
|
for DHT22 I used the library from https://github.com/beegee-tokyo/DHTesp, as the standard library gives to many wrong readings
|