https://github.com/scorelab/drola
Drone with Lora
https://github.com/scorelab/drola
Last synced: 4 months ago
JSON representation
Drone with Lora
- Host: GitHub
- URL: https://github.com/scorelab/drola
- Owner: scorelab
- License: apache-2.0
- Created: 2017-03-31T09:14:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-20T17:34:48.000Z (over 7 years ago)
- Last Synced: 2024-04-14T19:46:55.430Z (about 2 years ago)
- Language: CSS
- Size: 1.61 MB
- Stars: 64
- Watchers: 13
- Forks: 73
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drola
A Drone Monitoring System using LORA
We are introducing a separate hardware unit for drones which can easily mount on any kind of non-commercial drone. DroLa End node consists of a GPS module, microcontroller, LoRa module and a separate battery.
### Setting up Drola End Node
Setup the units according to the schematics given in the `LoRa_End_Node`. The End node microcontroller should contain the given firmware. The communication channel and addresses of Lora modules should be according to the given firmware.
### Setting up Drola Web
1) Clone the repository at the Base station.
2) Run the following command to install the node module dependencies.
```
cd Drola_Base_Node
npm install
```
2) Connect the configured base station LoRa module to the base station computer. You can start the node server by running following command-
```
npm start
```
3) Start the Websocket server and Websocket client to see the end node locations in the browser application.
```
cd Drola_Base_Node/api
python socket_server.py
python read_serial.py
```
4) Go to http://localhost:3000/ in your browser to see all the locations of the Live End Nodes.
**Note:** You can test the api by running `socket_client.py` instead of `read_serial.py`. It will show you some hard-coded locations. Trusted zones are not implemented yet to protect AES keys. The keys are hardcoded in this version.
## Base Node Application

## DroLa End Node

For more information please refer the [Wiki](https://github.com/NamalJayasuriya/drola/wiki/Drola) page.