Skip to content

lpaseen/gr-elster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

# Copyright 2013-2014 Clayton Smith
#
# This file is part of gr-elster
#
# gr-elster is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# gr-elster is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with gr-elster; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.

gr-elster
=========

Author: Clayton Smith
Email: <argilo@gmail.com>

This GNU Radio block and sample flow graph are intended to receive
packets transmitted by Elster smart meters on the 902-928 MHz band.  In
particular, I have tested it with the Elster R2S hydro meters used in the
Ottawa area.  It may work with other Elster meters.  Please let me know
what you manage to receive with it.

It is not yet complete, as I have not fully reverse engineered the packet
structure, nor the payload data.  But it is able to dump complete
packets, and can display meter readings and hourly electricity usage
data.  When running, it dumps all packets to the console in hex, and
decodes those packets containing meter readings as follows:

  Meter reading for meter #XXXXXXX: YYYYY kWh
  Hourly readings: Z.ZZ, Z.ZZ, Z.ZZ, Z.ZZ, Z.ZZ, Z.ZZ

It also stores packets to a pcap file (beginning with elster-001.pcap)
which can then be decoded using the decode_pcap.py script.

In my area, usage data is transmitted every six hours (beginning at
05:30, 11:30, 17:30 and 23:30 UTC), so it may be necessary to wait a
while before such packets will appear.

The flow graph in /apps/elster_rx_multi.grc is intended for use with an
RTL-SDR dongle, but can likely be used with other SDR receivers as well.
It receives six out of the 25 frequency-hopping channels used in my area,
but that should be sufficient to receive most traffic since packets are
repeated a few times on different channels.  The number of simultaneous
channels is limited by the bandwidth of the SDR.  An RTL-SDR dongle can
reliably receive up to about 2.4 MHz, which is sufficient for six 400-kHz
channels.

For best reception with an RTL-SDR dongle, set the frequency correction
slider to the appropriate value (in PPM) for your particular tuner.

Build instructions:

    mkdir build
    cd build
    cmake ../
    make
    sudo make install

If your GNU Radio is installed in /usr (rather than /usr/local), then
replace the third line above with:

    cmake -DCMAKE_INSTALL_PREFIX=/usr ../

After following the build instructions, be sure to restart GNU Radio
Companion so that the new block will be available there.

Any help you can offer with reverse engineering or coding would be
greatly appreciated!

About

A GNU Radio block that decodes packets transmitted by Elster R2S smart meters

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 60.7%
  • Python 34.2%
  • C++ 4.0%
  • C 1.1%