roflmao / meter_reading

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aidon/Hafslund AMS data parser

Use with an M-Bus dongle such as this one.

aidon_obis.py

A class for decoding HDLC and extracting OBIS fields. Requires python module crcmod (sudo pip install crcmod). NB: This is not a full COSEM parser, as the number of OBIS fields and their sequence is assumed to be as on a Hafslund meter.

aidon_test.py

Test output.

./aidon_test.py <port>
./aidon_test.py /dev/ttyUSB0

aidon_forward.py

Forward to influxdb and Home Assistant. Forwarding to only one of them is possible. Just omit the influx* or hass* arguments.
Will generate sensors in Home assistant named sensor.aidon_*. Not done with a component, so these sensors will disappear on Home Assistant restart, and can't be renamed.
For InfluxDB, readings are placed in the provided database under voltage, current, power and energy, and key dev holds device name (which begins with aidon).

python aidon_forward.py \
/dev/ttyUSB0 \
--influx_host http://localhost:8086 \
--influx_db metering \
--hass_host https://myhass.com:8123 \
--hass_token abcdefgh0123456789

aidon_read.py

Parses preliminary/old protocol used by Hafslund.
./aidon_read.py /dev/ttyUSB0

About


Languages

Language:Python 100.0%