109 lines
3.9 KiB
Markdown
109 lines
3.9 KiB
Markdown
# esp-multical21
|
|
ESP8266/ESP32 decrypts wireless MBus frames from a Multical21 water meter.
|
|
|
|
<img align="right" src="multical21.png" alt="Multical21" width="300"/>
|
|
|
|
### Hardware
|
|
The hardware you need:
|
|
<ul>
|
|
<li>ESP8266 or ESP32 - i took an ESP8266 D1 mini clone.
|
|
<li>CC1101 module for 868 MHz
|
|
<li>some wires
|
|
</ul>
|
|
|
|
The CC1101 868 MHz module is [connected](#d1-mini-connected-to-different-cc1101-modules) via SPI to the ESP8266/ESP32.
|
|
|
|
### Software
|
|
The best approach to build this software is using PlatformIO. If you are not familiar with PlatformIO, [here](https://www.youtube.com/watch?v=JmvMvIphMnY) is a good place to start.
|
|
|
|
The Multical21 is transmitting encrypted MBus frames (Mode C1, frame type B) every 16 seconds.
|
|
The ESP8266/ESP32 does some validation (correct serial number, crc checking) and then
|
|
decrypts them with AES-128-CTR.
|
|
|
|
### Meter values
|
|
The Multical21 provides the following meter values:
|
|
<ul>
|
|
<li> total counter - total water consumption in m³
|
|
<li> target counter - water consumption until 1. day of the current month
|
|
<li> medium temperature - in °C
|
|
<li> ambient temperature - in °C
|
|
<li> info codes - BURST, LEAK, DRY, REVERSE, TAMPER, RADIO OFF
|
|
</ul>
|
|
|
|
The ESP8266/ESP32 prints out the current meter values via UART (baudrate: 115200).
|
|
The UART output looks something like this:
|
|
```
|
|
total: 1636.265 m³ - target: 1624.252 m³ - 13 °C - 22 °C - 0x00
|
|
```
|
|
Additionally the meter values are sent via MQTT to a given broker.
|
|
|
|
Rename [config_template.h](include/config_template.h) to _**config.h**_ and fill in some information.
|
|
|
|
The serial number (8 digits) is printed on the water meter (above the LCD).
|
|
Ask your water supplier for the decryption key (16 bytes). I got mine packed in a so called
|
|
KEM-file. To extract the key i used a python script [kem-decryptor.py](https://gist.github.com/mbursa/caa654a01b9e804ad44d1f00208a2490)
|
|
|
|
Provide your water meter serial number and decryption key in _**config.h**_:
|
|
|
|
```
|
|
// ask your water supplier for your personal encryption key
|
|
#define ENCRYPTION_KEY 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF
|
|
// serial number is printed on your multical21
|
|
#define SERIAL_NUMBER 0x63, 0x00, 0x05, 0x43
|
|
```
|
|
|
|
Provide your wifi credentials (ssid, password).
|
|
Add your optional MQTT broker ip address. If your broker uses authentication add MQTT username/password.
|
|
|
|
```
|
|
// "ssid", "wifi_passphrase", "mqtt_broker", "mqtt_username", "mqtt_password"
|
|
std::vector<CREDENTIAL> const credentials = {
|
|
{ "ssid1", "********", "10.0.0.1", "mqttuser", "********"}
|
|
```
|
|
|
|
You can provide multiple wifi configurations:
|
|
```
|
|
// more than one wifi credentials are supported, upper one wins
|
|
// "ssid", "wifi_passphrase", "mqtt_broker", "mqtt_username", "mqtt_password"
|
|
std::vector<CREDENTIAL> const credentials = {
|
|
{ "ssid1", "********", "", "", ""} // no MQTT
|
|
, { "ssid2", "********", "10.14.0.1", "", ""} // MQTT without auth
|
|
, { "ssid3", "********", "10.0.0.111", "mqttuser", "********"} // MQTT with auth
|
|
};
|
|
```
|
|
|
|
Change the MQTT prefix and the topic names as you like. Currently the water counter value
|
|
is published in **watermeter/0/total** and so on.
|
|
```
|
|
#define MQTT_PREFIX "watermeter/0"
|
|
#define MQTT_total "/total"
|
|
#define MQTT_target "/target"
|
|
#define MQTT_ftemp "/flowtemp"
|
|
#define MQTT_atemp "/ambienttemp"
|
|
#define MQTT_info "/infocode"
|
|
```
|
|
|
|
### Connect your ESP8266/ESP32 to the CC1101 868Mhz module:
|
|
|
|
<div align="center">
|
|
|
|
| CC1101 | ESP8266 | ESP32 |
|
|
|--------|:-------:|:-----:|
|
|
| VCC | 3V3 | 3V3 |
|
|
| GND | GND | GND |
|
|
| CSN | D8 | 4 |
|
|
| MOSI | D7 | 23 |
|
|
| MISO | D6 | 19 |
|
|
| SCK | D5 | 18 |
|
|
| GDO0 | D2 | 32 |
|
|
| GDO2 | not connected| not connected|
|
|
</div>
|
|
|
|
### D1 Mini connected to different CC1101 modules:
|
|
|
|
<img src="ESP8266_CC1101.png" alt="ESP8266_CC1101" />
|
|
|
|
<img src="ESP8266_CC1101b.png" alt="ESP8266_CC1101b" />
|
|
|
|
### Credit
|
|
Thanks to [weetmuts](https://github.com/weetmuts) for his great job on the wmbusmeters.
|