This is an OOT Module for Receiving Balerante Telemetry transmission in GNU Radio
This project is maintained by handiko
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
There are a few dependencies required to compile this project, which are:
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
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
ORcmake ../ -DCMAKE_INSTALL_PREFIX=/usr/local
(depends on your system)make
sudo make install
sudo ldconfig
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:
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).
If the demodulation process success, the following waveform would appear periodically:
By telnet-ing to localhost 52001, you would see the received sensor values
The values are logged as a CSV file in your home folder
git checkout -b add-blah-blah
)git commit -m "Adding some blah blah blah.."
)git push -u origin add-blah-blah
)