Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.98 KB

README.md

File metadata and controls

62 lines (40 loc) · 1.98 KB

Home-Assistant-Luxtronik

A Luxtronik heatpump component for Home Assistant

This component is going to use the "old" binary protocol that Alpha Innotec, the manufacturer of the Luxtronik heatpumps, used in its Java based webinterface. They added a new, websockets based webinterface in newer versions, but in order to make this a useful component to as much users as possible we decided to stick with the binary protocol. Maybe we implement the new protocol in the future and make it configurable which protocol the component is going to use.

Binary protocol

A Luxtronik heatpump runs a TCP server that servers the binary protocol on port 8888 or 8889 depending on the firmware version.

The binary protocol has 4 commands which are decribed in seperate files:

  • 3001 : Read Attribute, not implmented (at least in V3.79)
  • 3002 : Writing parameters to the heatpump
  • 3003 : Read parameters from the heatpump
  • 3004 : Read calculations from the heatpump (measurement values, etc.)
  • 3005 : Read visibilitys from the heatpump (not clear at the Moment what the purpose of these is)
  • 3006 : Authenticate, not implmented (at least in V3.79)

Usage

Disclaimer This not meant to be the final repo for the Component / Platforms, just for others to test the custom_component.

copy the luxtronik.py file , the sensor and the binary_sensor folders with their contents into your custom_components directors.

├── binary_sensor
│   └── luxtronik.py
├── luxtronik.py
└── sensor
    └── luxtronik.py

Then configure the Component and the sensors/binary sensors like this example:

luxtronik:
  host: "192.168.88.11"
  port: 8889



- platform: luxtronik
  scan_interval: 60
  sensors:
    - 'ID_WEB_Temperatur_TVL'
    - 'ID_WEB_Temperatur_TBW'



- platform: luxtronik
  scan_interval: 60
  sensors:
    - 'ID_WEB_VBOout'

You'll need to select the sensors by ID, look at the data.txt file for reference.