Create README.md

This commit is contained in:
geoffwhittington
2022-08-17 21:39:44 -04:00
committed by GitHub
parent 160e5eb028
commit ff938dabe2
+31
View File
@@ -0,0 +1,31 @@
# Meshtastic Bridge
Connect two distinct radio [Meshtastic](https://meshtastic.org) networks using TCP.
## Requirements
* Python3
* `LOCAL_NODE_ADDR` The IP address or Serial devPath (micro USB cable needed for serial access) of a local Meshtastic device
* `REMOTE_NODE_ARR` The IP address of a remote Meshtastic device
Refer to <https://meshtastic.org/docs/settings/config/wifi#wifi-client> to configure a Meshtastic device to use wifi and expose a TCP address
## Setup
Run the following steps to download and install the software locally
```
$ git clone https://github.com/geoffwhittington/meshtastic-bridge.git
$ python3 -m venv meshtastic-bridge
$ cd meshtastic-bridge
$ source bin/activate
$ pip install -r requirements.txt
```
## Turn on the Bridge
In the `meshtastic-bridge` directory run the following:
```
LOCAL_NODE_ADDR=/dev/ttyUSB0 REMOTE_NODE_ARR=182.168.86.123 python main.py
```