wmbusmeters/README.md

174 wiersze
7.1 KiB
Markdown
Czysty Zwykły widok Historia

2017-08-06 17:20:59 +00:00
# wmbusmeters
2018-11-01 20:02:46 +00:00
The program receives and decodes C1 or T1 telegrams
2017-08-09 10:00:11 +00:00
(using the wireless mbus protocol) to acquire
2018-11-25 11:33:14 +00:00
utility meter readings. The readings can then be published using
MQTT, inserted into a database or stored in a log file.
2018-01-05 16:54:51 +00:00
| OS/Compiler | Status |
| ------------- |:-------------:|
2018-01-05 17:00:32 +00:00
|Linux G++| [![Build Status](https://travis-ci.org/weetmuts/wmbusmeters.svg?branch=master)](https://travis-ci.org/weetmuts/wmbusmeters) |
2017-08-30 12:14:18 +00:00
2017-08-31 09:15:12 +00:00
```
2018-11-29 21:32:31 +00:00
wmbusmeters version: 0.8
Usage: wmbusmeters {options} (auto | /dev/ttyUSBx)] { [meter_name] [meter_type] [meter_id] [meter_key] }*
2017-08-30 12:14:18 +00:00
Add more meter quadruplets to listen to more meters.
2017-08-31 09:15:12 +00:00
Add --verbose for detailed debug information.
2018-03-05 10:36:20 +00:00
--robot or --robot=json for json output.
2018-03-05 10:39:30 +00:00
--robot=fields for semicolon separated fields.
--separator=X change field separator to X.
--meterfiles=dir to create status files below dir,
named dir/meter_name, containing the latest reading.
--meterfiles defaults dir to /tmp.
2018-11-01 19:59:19 +00:00
--c1 or --t1 listen to C1 or T1 messages
--shell=cmd invokes cmd with env variables containing the latest reading.
--shellenvs list the env variables available for the meter.
2017-09-02 21:26:57 +00:00
--oneshot wait for an update from each meter, then quit.
2018-03-05 14:14:50 +00:00
--exitafter=20h program exits after running for twenty hours,
or 10m for ten minutes or 5s for five seconds.
Specifying auto as the device will automatically look for usb
wmbus dongles on /dev/im871a and /dev/amb8465.
2018-11-23 08:04:31 +00:00
The meter types: multical21,flowiq3100,supercom587,iperl (water meters) are supported.
The meter types: multical302 (heat), omnipower (electricity) are work in progress.
2017-08-31 09:15:12 +00:00
```
2017-08-09 10:00:11 +00:00
2018-11-01 19:59:19 +00:00
No meter quadruplets means listen for telegram traffic and print any id heard,
but you have to specify if you want to listen using radio mode C1 or T1. E.g.
```
2018-11-02 18:08:56 +00:00
wmbusmeters --t1 /dev/ttyUSB0
2018-11-01 19:59:19 +00:00
```
You can listen to multiple meters as long as they all require the same radio mode C1 or T1.
So (currently) you cannot listen to a multical21 and a supercom587 with a single dongle at the same time.
2017-08-09 10:02:42 +00:00
2018-03-05 11:21:55 +00:00
# Usage examples
2017-09-02 21:26:57 +00:00
2017-08-31 09:15:12 +00:00
```
2018-11-02 18:08:56 +00:00
wmbusmeters /dev/ttyUSB0 MyTapWater multical21 12345678 00112233445566778899AABBCCDDEEFF
2017-08-31 09:15:12 +00:00
```
wmbusmeters will detect which kind of dongle is connected to /dev/ttyUSB0. It can be either an IMST 871a dongle or an Amber Wireless AMB8465. If you have setup the udev rules below, then you can use auto instead of /dev/ttyUSB0.
2017-08-31 09:15:12 +00:00
Example output:
2018-03-05 11:21:55 +00:00
2018-11-29 21:32:31 +00:00
`MyTapWater 12345678 6.388 m3 6.377 m3 8°C 23°C DRY(dry 22-31 days) 2018-03-05 12:02.50`
2018-12-28 15:07:24 +00:00
(Temperature is only sent every 8 message. Until such a full message has been received, the temperature is reported as -°C
in the human readable output, and as 127°C in the robot outputs and json.)
2017-08-31 09:15:12 +00:00
2018-03-05 11:21:55 +00:00
Example robot json output:
2017-08-09 10:02:42 +00:00
2018-11-02 18:08:56 +00:00
`wmbusmeters --robot=json auto MyTapWater multical21 12345678 00112233445566778899AABBCCDDEEFF MyHeater multical302 22222222 00112233445566778899AABBCCDDEEFF`
2017-08-09 10:00:11 +00:00
2018-11-29 21:32:31 +00:00
`{"media":"cold water","meter":"multical21","name":"MyTapWater","id":"12345678","total_m3":6.388,"target_m3":6.377,"flow_temperature":8,"external_temperature":23,"current_status":"DRY","time_dry":"22-31 days","time_reversed":"","time_leaking":"","time_bursting":"","timestamp":"2018-02-08T09:07:22Z"}`
2018-03-05 11:14:23 +00:00
2018-11-02 18:20:52 +00:00
`{"media":"heat","meter":"multical302","name":"MyHeater","id":"22222222","total_kwh":0.000,"total_volume_m3":0.000,"current_kw":"0.000","timestamp":"2018-02-08T09:07:22Z"}`
2018-03-05 11:14:23 +00:00
2018-03-05 11:21:55 +00:00
Example robot fields output:
2018-11-02 18:08:56 +00:00
`wmbusmeters --robot=fields auto GreenhouseWater multical21 33333333 ""`
2018-03-05 11:14:23 +00:00
2018-11-29 21:32:31 +00:00
`GreenhouseTapWater;33333333;9999.099;77.712;11;31;;2018-03-05 12:10.24`
Eaxmple of using the shell command to publish to MQTT:
2018-11-02 18:08:56 +00:00
`wmbusmeters --shell='HOME=/home/you mosquitto_pub -h localhost -t water -m "$METER_JSON"' auto GreenhouseWater multical21 33333333 ""`
Eaxmple of using the shell command to inject data into postgresql database:
2018-11-02 18:08:56 +00:00
`wmbusmeters --shell="psql waterreadings -c \"insert into readings values ('\$METER_ID',\$METER_TOTAL_M3,'\$METER_TIMESTAMP') \" " auto MyColdWater multical21 12345678 ""`
2018-11-02 18:08:56 +00:00
You can have multiple shell commands and they will be executed in the order you gave them on the commandline.
Note that to single quotes around the command is necessary to pass the env variable names into wmbusmeters.
You can use `--debug` to get both verbose output and the actual data bytes sent back and forth with the wmbus usb dongle.
2018-03-05 11:21:55 +00:00
If the meter does not use encryption of its meter data, then enter an empty key on the command line.
(you must enter "")
2018-11-02 18:08:56 +00:00
`wmbusmeters --robot --meterfiles auto MyTapWater multical21 12345678 ""`
2018-03-05 11:21:55 +00:00
2018-12-28 15:07:24 +00:00
If you have a Multical21 meter and you have received a KEM file and its password,
from your water municipality, then you can use the XMLExtract.java utility to get
the meter key from the KEM file. You need to unzip the the KEM file first though,
if it is zipped.
2018-03-05 11:21:55 +00:00
You can run wmbusmeters with --logtelegrams to get log output that can be placed in a simulation.txt
file. You can then run wmbusmeter and instead of auto (or an usb device) provide the simulationt.xt
file as argument. See test.sh for more info.
# Builds and runs on GNU/Linux:
`make && make test`
Binary generated: `./build/wmbusmeters`
2017-08-31 09:15:12 +00:00
`make HOST=arm`
2017-08-09 10:02:42 +00:00
2017-08-31 09:15:12 +00:00
Binary generated: `./build_arm/wmbusmeters`
2017-08-09 10:00:11 +00:00
2017-08-31 09:15:12 +00:00
`make DEBUG=true`
2017-08-09 10:02:42 +00:00
2017-08-31 09:15:12 +00:00
Binary generated: `./build_debug/wmbusmeters`
2017-08-09 10:00:11 +00:00
2017-08-31 09:15:12 +00:00
`make DEBUG=true HOST=arm`
2017-08-09 10:02:42 +00:00
2017-08-31 09:15:12 +00:00
Binary generated: `./build_arm_debug/wmbusmeters`
2017-08-09 10:02:42 +00:00
2017-09-02 21:26:57 +00:00
# System configuration
2017-08-31 09:15:12 +00:00
Add yourself to the dialout group to get access to the newly plugged in im871A USB stick.
Or even better, add this udev rule:
2017-09-02 21:26:57 +00:00
Create the file: `/etc/udev/rules.d/99-usb-serial.rules` with the content
```
SUBSYSTEM=="tty", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", SYMLINK+="im871a",MODE="0660", GROUP="yourowngroup"
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", SYMLINK+="amb8465",MODE="0660", GROUP="yourowngroup"
```
When you insert the wmbus USB dongle, a properly named symlink will be
created: either `/dev/im871a` or `/dev/amb8465`. These symlinks are
necessary if you want to pass "auto" to wmbusmeters instead of the
exact serial port /dev/ttyUSBx.
2017-08-09 10:00:11 +00:00
# Source code
The source code is modular and it should be relatively straightforward to add more receivers and meters.
2017-08-09 10:00:11 +00:00
Read for example the text file: HowToAddaNewMeter.txt
2017-09-02 21:26:57 +00:00
# Good documents on the wireless mbus protocol:
http://www.m-bus.com/files/w4b21021.pdf
2017-08-09 10:02:42 +00:00
2017-08-09 10:00:11 +00:00
https://www.infineon.com/dgdl/TDA5340_AN_WMBus_v1.0.pdf
2017-08-09 10:02:42 +00:00
2017-08-09 10:00:11 +00:00
http://fastforward.ag/downloads/docu/FAST_EnergyCam-Protocol-wirelessMBUS.pdf
http://www.multical.hu/WiredMBus-water.pdf
2017-09-02 21:26:57 +00:00
http://uu.diva-portal.org/smash/get/diva2:847898/FULLTEXT02.pdf
2018-04-01 06:53:37 +00:00
http://projekter.aau.dk/projekter/da/studentthesis/wireless-mbus-based-extremely-low-power-protocol-for-wireless-communication-with-water-meters(6e1139d5-6f24-4b8a-a727-9bc108012bcc).html
2017-08-09 10:00:11 +00:00
The AES source code is copied from:
2017-08-09 10:02:42 +00:00
2017-08-09 10:00:11 +00:00
https://github.com/kokke/tiny-AES128-C
2018-01-05 16:54:51 +00:00
The following other github projects were of great help:
2017-08-09 10:02:42 +00:00
2017-08-09 10:00:11 +00:00
https://github.com/ffcrg/ecpiww
2017-08-09 10:02:42 +00:00
2018-01-05 16:54:51 +00:00
https://github.com/CBrunsch/scambus/
TODO: CRC checks are still missing. If the wrong AES key
is supplied you probably get zero readings and
sometimes warnings about wrong type of frames.
2018-04-01 06:54:53 +00:00
There is also a lot of wmbus protocol implementation details that
probably are missing. They will be added to the program
as we figure out how the meters send their data.