๐ Monitoring for the STIEBEL ELTRON Heat Pump
- Python 3.11
- MySQL
- Grafana (optional)
- Raspberry Pi + CANable (or similar devices)
- Download the latest release
wget https://github.com/danielbayerlein/sepicker/releases/latest/download/package.zip
- Unzip the package
unzip package.zip
- Install the dependencies
pip3 install -r requirements.txt
To collect the data every x minutes, it's necessary to create a cron job. This is an example to query the data every two minutes:
*/2 * * * * /home/pi/sepicker/bin/sepicker
Execute the seed file via MySQL command line or copy the query into your MySQL shell.
With Grafana you can create your own dashboard with widgets or use the existing template.
The configuration for the CAN bus and for the data to be queried is located in config.yml. The database configuration is located in .env.
File: config.yml
can:
interface: can0
sender: 680
interface
: CAN bus interfacecan0
sender
: Sender ID680
File: config.yml
See http://juerg5524.ch/data/ElsterTable.inc for the indexes.
data:
- name: AUSSENTEMPERATUR
index: 180.000c
format: dec_val
- name: QUELLENTEMPERATUR
index: 180.01d4
format: dec_val
- name: FEHLER
index: 180.0001
name
: Name for the data pointAUSSENTEMPERATUR
index
: Receiver and Register separated by a dot180.000c
format
(optional):dec_val
mil_val
little_endian
File: .env
Rename the .env.example
file to .env
or create it with the following content:
DB_DATABASE=heat-pump
DB_HOST=127.0.0.1
DB_USER=root
DB_PASSWORD=
- http://juerg5524.ch/list_data.php
- https://github.com/andig/goelster
- https://github.com/Andy2003/heat-pump-api
Copyright (c) 2020-present Daniel Bayerlein. See LICENSE for details.