File tree Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,9 @@ wget https://github.com/brocaar/lora-gateway-bridge/releases/download/VERSION/lo
5656# unpack
5757tar zxf lora_gateway_bridge_VERSION_linux_amd64.tar.gz
5858
59- # move the binary to /usr/local/bin
60- sudo mv lora-gateway-bridge /usr/local/bin
59+ # move the binary to /opt/lora-gateway-bridge/bin
60+ sudo mkdir -p /opt/lora-gateway-bridge/bin
61+ sudo mv lora-gateway-bridge /opt/lora-gateway-bridge/bin
6162```
6263
6364In order to start LoRa Gateway Bridge as a service, create the file
@@ -66,12 +67,12 @@ In order to start LoRa Gateway Bridge as a service, create the file
6667```
6768[Unit]
6869Description=lora-gateway-bridge
69- After=network.target
70+ After=mosquitto.service
7071
7172[Service]
7273User=gatewaybridge
7374Group=gatewaybridge
74- ExecStart=/usr/local /bin/lora-gateway-bridge
75+ ExecStart=/opt/lora-gateway-bridge /bin/lora-gateway-bridge
7576Restart=on-failure
7677
7778[Install]
@@ -159,8 +160,4 @@ send to the LoRa Gateway Bridge see [topics](topics.md).
159160## Setup LoRa Server
160161
161162Now you have your LoRa Gateway bridge instance up and running, it is time to
162- setup [ LoRa Server] ( https://docs.loraserver.io/loraserver/ ) .
163-
164- !!! info
165- You can also use Ansible to setup a complete LoRa Server environment. See
166- [ https://github.com/brocaar/loraserver-setup ] ( https://github.com/brocaar/loraserver-setup ) .
163+ setup [ LoRa Server] ( https://docs.loraserver.io/loraserver/ ) .
Original file line number Diff line number Diff line change @@ -4,7 +4,20 @@ LoRa Gateway Bridge is a service which abstracts the
44[ packet_forwarder UDP protocol] ( https://github.com/Lora-net/packet_forwarder/blob/master/PROTOCOL.TXT )
55running on most LoRa gateways into JSON over MQTT. It enables you to use MQTT for
66receiving data from and sending data to your gateways.
7- This project is part of [ LoRa Server] ( http://docs.loraserver.io/loraserver/ ) .
7+
8+ ## Project components
9+
10+ This project exists out of multiple components
11+
12+ ![ architecture] ( https://www.gliffy.com/go/publish/image/11010339/L.png )
13+
14+ * [ lora-gateway-bridge] ( https://github.com/brocaar/lora-gateway-bridge ) - converts
15+ the [ packet_forwarder protocol] ( https://github.com/Lora-net/packet_forwarder/blob/master/PROTOCOL.TXT )
16+ to MQTT and back
17+ * [ loraserver] ( https://github.com/brocaar/loraserver ) - LoRaWAN network-server
18+ * [ lora-app-server] ( https://github.com/brocaar/lora-app-server ) - LoRaWAN
19+ application-server
20+ * lora-controller (todo) - LoRaWAN network-controller
821
922## Compatibility
1023
You can’t perform that action at this time.
0 commit comments