A luxtronik heatpump controller interface
Project description
Luxtronik
python-luxtronik is a library that allow you to interact with a Luxtronik heatpump controller.
Installation
Installation is siply using this pip command:
pip install luxtronik
Examples
Reading values
from luxtronik import Luxtronik
l = Luxtronik('192.168.1.23', 8889)
t_forerun = l.calculations.get("ID_WEB_Temperatur_TVL")
# alternatively get by id:
t_forerun = l.calculations.get(10)
print(t_forerun) # this returns the temperature value of the forerun, 22.7 for example
print(t_forerun.unit) # gives you the unit of the value if known, °C for example
# l.calculations holds measurement values
# check https://github.com/Bouni/luxtronik/blob/master/luxtronik/calculations.py for values you might need
# l.parameters holds parameter values
# check https://github.com/Bouni/luxtronik/blob/master/luxtronik/parameters.py for values you might need
# l.visibilitys holds visibility values, the function of visibilities is not clear at this point
check https://github.com/Bouni/luxtronik/blob/master/luxtronik/visibilities.py for values you might need
Writing values
from luxtronik import Luxtronik
l = Luxtronik('192.168.1.23', 8889)
heating_mode = l.parameters.set("ID_Ba_Hz_akt", "Party")
l.write()
# If you're not sure what values to write, you can get all options:
print(l.parameters.get("ID_Ba_Hz_akt").options) # returns a list of possible values to write, ['Automatic', 'Second heatsource', 'Party', 'Holidays', 'Off'] for example
By default a safeguard is enabled that prevents writing of parameters whose purpose is unknown.
You can disable that safeguard by passing safe=False to the Luxtronik class.
from luxtronik import Luxtronik
l = Luxtronik('192.168.1.23', 8889, safe=False)
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 luxtronik-0.3.14.tar.gz.
File metadata
- Download URL: luxtronik-0.3.14.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba465497ba9f57ef5dcc1ecca293d4bc9777471a7e350ee7721997dc45d9982
|
|
| MD5 |
32679621282bb0f6029313097db0ef10
|
|
| BLAKE2b-256 |
250788614c0abf9cfa28cee51770569579d36754d6f14a8212b2aa74b5dc2862
|
File details
Details for the file luxtronik-0.3.14-py3-none-any.whl.
File metadata
- Download URL: luxtronik-0.3.14-py3-none-any.whl
- Upload date:
- Size: 22.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f75696ff483e30c9dcb08f01c05747c32584e7a0cd4f433a38c8c6969d99d3b4
|
|
| MD5 |
5c9e9e9f12a11670c73b33c96104bd0f
|
|
| BLAKE2b-256 |
9f99c35f509ca00bdf3982993fdeac69188aa81ca0bbd9d815ddb3b76e6df019
|