Gr-smart meters Setup Guide: Difference between revisions
No edit summary |
|||
| Line 176: | Line 176: | ||
Close all open terminal windows and then open a new one. | Close all open terminal windows and then open a new one. | ||
== | ==Setup gr-smart_meters== | ||
This contains the GridStream block that will be used to decode Landis+Gyr Smart Meter data along with pre-configured flowgraphs for USRP B200, HackRF and RTL-SDR and a script to decode GPS data transmitted in some cases. | This contains the GridStream block that will be used to decode Landis+Gyr Smart Meter data along with pre-configured flowgraphs for USRP B200, HackRF and RTL-SDR and a script to decode GPS data transmitted in some cases. | ||
===Install gr-smart_meters=== | |||
< | <syntaxhighlight lang="bash"> | ||
git clone https://github.com/BitBangingBytes/gr-smart_meters.git | |||
cd gr-smart_meters/ | |||
mkdir build | |||
cd build/ | |||
cmake .. | |||
make -j8 | |||
sudo make install | |||
sudo ldconfig | |||
</syntaxhighlight> | |||
===Start GNU Radio from a terminal window=== | |||
<code>gnuradio-companion</code> | |||
===Open flowgraph for your SDR=== | |||
In GNU Radio open a flowgraph and navigate to the gr-smart_meters/flowgraph folder. If you have installed everything above you should be able to run it and see smart meter data! | |||