FEDER:Lora Network Installation: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
We have installed a LoraWAN using raspberry pi and IMST gateway (iC880A-USB). The loriot.io network service has been used in our experimentation. LoPy | We have installed a LoraWAN using raspberry pi 2 and IMST gateway (iC880A-USB). The loriot.io network service has been used in our experimentation. LoPy micro-controllers were used as end-devices in our test. We were able publishing data to Loriot.io by using LoPy board. Below are the step-by-step LoraWAN installation procedure. | ||
I. Setting up the gateway | |||
1. Make sure that the Raspberry Pi is connected to the internet and that you connected the IMST iC880A over USB. | |||
2. Download of the Open Source Driver | |||
a. Install git client: | |||
sudo apt-get install git | |||
b. Create local folder: | |||
mkdir -p ~/LoRa/lora_gateway | |||
c. Clone the repository: | |||
cd ~/LoRa/lora_gateway | |||
git clone https://github.com/Lora-net/lora_gateway.git | |||
Note: Use lora_gateway 2.0.0, not the latest version. (Run git checkout v2.0.0 in the lora_gateway folder). | |||
cd lora_gateway | |||
git checkout v2.0.0 |
Revision as of 15:00, 3 March 2017
We have installed a LoraWAN using raspberry pi 2 and IMST gateway (iC880A-USB). The loriot.io network service has been used in our experimentation. LoPy micro-controllers were used as end-devices in our test. We were able publishing data to Loriot.io by using LoPy board. Below are the step-by-step LoraWAN installation procedure.
I. Setting up the gateway 1. Make sure that the Raspberry Pi is connected to the internet and that you connected the IMST iC880A over USB. 2. Download of the Open Source Driver a. Install git client: sudo apt-get install git b. Create local folder: mkdir -p ~/LoRa/lora_gateway c. Clone the repository: cd ~/LoRa/lora_gateway git clone https://github.com/Lora-net/lora_gateway.git Note: Use lora_gateway 2.0.0, not the latest version. (Run git checkout v2.0.0 in the lora_gateway folder). cd lora_gateway git checkout v2.0.0