blob: 260cb0bc842689b21fc56c407125299b57ebc74d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# APRS/LoRa Tracker and i-gate
The goal is to create an APRS/LoRa tracker using an STM32 and an i-gate running on a Raspberry Pi.
Try to follow https://aprs434.github.io/
## Tracker
Contains STM32F103, u-blox NEO-M8N, RFM98W 433MHz LoRa Module and AFT09MS007NT1 PA:
![3d view](tracker-kicad/20230709-tracker-kicad-3d.png)
## i-gate
`python/igate.py` contains an APRS-IS i-gate that uses a RFM98W on a Raspberry Pi.
It only forwards position reports.
### Installation
Configuration: Modify the CALLSIGN and PASSCODE inside `igate.py`
cd python
python3 -m venv venv
venv/bin/pip install -r requirements.txt
./igate.py
|