Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/handiko/gr-merapi
This is an OOT Module for Receiving Balerante Telemetry transmission in GNU Radio
https://github.com/handiko/gr-merapi
gnuradio gnuradio-companion merapi mt-merapi rtl-sdr rtlsdr telemetry telemetry-data
Last synced: 16 days ago
JSON representation
This is an OOT Module for Receiving Balerante Telemetry transmission in GNU Radio
- Host: GitHub
- URL: https://github.com/handiko/gr-merapi
- Owner: handiko
- License: gpl-3.0
- Created: 2018-08-14T04:20:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-28T22:14:08.000Z (over 4 years ago)
- Last Synced: 2024-11-01T21:42:27.516Z (2 months ago)
- Topics: gnuradio, gnuradio-companion, merapi, mt-merapi, rtl-sdr, rtlsdr, telemetry, telemetry-data
- Language: CMake
- Homepage: https://handiko.github.io/gr-Merapi/
- Size: 4.11 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gr-Merapi - A GNU Radio Block for Telemetry
This project is about an SDR based decoder which runs on the GNU Radio software to receive telemetry transmission from the Balerante Station (Mt. Merapi). This transmission contains 6 data fields (horizontal & vertical vibration, temperature, humidity, rain measurement, and sulphuric compound gas. The data protocol was made by Mr. Angga and sponsored by PT. Data Asia Technology and Sensor and Telecontrolling Systems Lab., Universitas Gadjah Mada.Tested on GNU Radio 3.7.10 and Ubuntu 16.04
## Dependencies
There are a few dependencies required to compile this project, which are:
* GNU Radio V.3.7.10 and Up
* Boost
* SWIG
* CMAKE
* GR-OSMOSDR
* RTL-SDR![](./gnuradio_logo.svg)
Here are the steps required to install them:
* `sudo apt-get update && sudo apt-get upgrade -y`
* `sudo apt-get install libboost-all-dev swig cmake git gcc -y`
* `sudo apt-get install gnuradio gr-osmosdr rtl-sdr`## Installation
This project is built using the gr_modtool which bundle up all the script into an installable module. To install, just open up the Terminal and run:
* `git clone https://github.com/handiko/gr-Merapi.git`
* `cd gr-Merapi`
* `mkdir build`
* `cd build`
* `cmake ../ -DCMAKE_INSTALL_PREFIX=/usr`
OR
* `cmake ../ -DCMAKE_INSTALL_PREFIX=/usr/local`
(depends on your system)
* `make`
* `sudo make install`
* `sudo ldconfig`## Example
There is a .grc example included in **gr-Merapi/examples**. Open it up in GNU Radio companion by typing:
* `cd`
* `cd gr-Merapi/examples`
* `gnuradio-companion merapi_decode.grc`The Flowgraph:
![](./merapi_decode.grc.png)When it runs, it will receive the telemetry signal at 433,250 MHz from Mt. Merapi (given that you are in the signal coverage area).
![](./gr-Merapi_input_spectrum.png)If the demodulation process success, the following waveform would appear periodically:
![](./gr-Merapi_demodulation.png)By telnet-ing to localhost 52001, you would see the received sensor values
![](./gr-Merapi_telnet.png)The values are logged as a CSV file in your home folder
![](./gr-Merapi_merapi_log.csv.png)## Acknowledgement
* PT. Datto Asia Teknologi
* Lab. Sensor dan Sistem Telekontrol, Universitas Gadjah Mada
* ORARI Daerah DIY## Contributing
1. Fork it [https://github.com/handiko/gr-Merapi/fork](https://github.com/handiko/gr-Merapi/fork)
2. Create new branch (`git checkout -b add-blah-blah`)
3. Do some editing / create new feature
4. Commit your works (`git commit -m "Adding some blah blah blah.."`)
5. Push to the branch (`git push -u origin add-blah-blah`)
6. Create a new Pull Request![](./merapi_station.png)