Senertec energy system gen2 interface.
Project description
py-senertec
Description
The py-senertec library provides a way to communicate with Senertec Dachsportal2 to monitor your energy unit. This library supports read-only communication. So changing values for your energy unit isn't implemented and not planned.
Requirements
- Python >=3.10
- Account for Senertec Dachsportal2/Remeha KWK
Tested with these devices
I could test with these devices but others should also work:
- Senertec Dachs 0.8
- Senertec Dachs InnoGen
- Senertec Dachs Gen2 F5.5
- Remeha eLecta 300 (technically same as Senertec Dachs 0.8)
Installation
$ pip install py-senertec
Usage
Login and initialization
from senertec.client import senertec
from senertec.canipValue import canipValue
import json
# Initialize class
client = senertec()
# set your callback function for messages
client.messagecallback = self.output
# login
client.login("username", "password")
client.init()
Set the callback function
Once the websocket has been started, data will be transmitted through the websocket. To get the websocket data, you need to add a callback which was done above. The callback function could look like this:
def output(self, value: canipValue):
print(value.friendlyDataName + ": " +
value.dataValue.__str__() + value.dataUnit)
Requesting data
units = client.getUnits()
# connect to first unit in the list
client.connectUnit(units[0].serial)
# request all available datapoints from all boards
# This should only be used for testing, it recommended to use a filter instead
# Take a look in the examples folder for a detailed example.
client.request(None)
# logout when you're finished
client.logout()
# or disconnect if you want to connect to another unit afterwards
# client.disconnectUnit()
Errors of energy unit
Errors can also be read out with a simple function. The errors are read out on the connect function and will only be refreshed on a reconnect.
# values are returned directly from function
errors = client.getErrors()
The full example can be found here
Filtering (recommended)
If you specify a json string in the request() function you can limit what datapoints should be received. This is recommended if you know what data you want from your heating system e.g. power, temperature. By default all datapoints are included which are more than 400 in most cases and receiving them takes some time and sometimes not every value will be received. This json string should look like this. The json string contains the productGroup at the top and below the datapoints which should be included. You get the productGroup name from the getUnits() function.
You can also optionally include the boardname for a datapoint in the json. This is usefull if a datapoint exists in multiple boards but you only want e.g. AM027 from board SCB-04@1.
What are these datapoints?
Take a look at this manual from Remeha (Page 39). There is already a good explanation of how these datapoints are composed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_senertec-1.0.1.tar.gz.
File metadata
- Download URL: py_senertec-1.0.1.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37cf6ddd88e4843245a817b4e3e22ea61ae496116d6ecad890b8126a2cac7900
|
|
| MD5 |
1a7e5eed243f9b41a56bba666dc7e5ea
|
|
| BLAKE2b-256 |
205f291602392a29377f6e522a20bfdd266fd37498962f965cdec37c95187c94
|
File details
Details for the file py_senertec-1.0.1-py3-none-any.whl.
File metadata
- Download URL: py_senertec-1.0.1-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edfeb66e3d8282be7bc56dcc7d07ff4ad2138013445f5064fbb7687add46a05f
|
|
| MD5 |
9e7a90528ef181e88bcd8a074424688f
|
|
| BLAKE2b-256 |
fec7421439e213a23a895d18aca42e7591bd7369db0d604622a568f1efb6d0bc
|