Skip to main content

Open source interface between a Viessmann device (heat pump, gas heater, etc) and MQTT

Project description

GitHub Tag PyPI - Version

viessmann-optolink2mqtt

This project provides an open source interface between a Viessmann device (heat pump, gas heater, etc) and MQTT.

[!IMPORTANT] This project is an independent work and is not associated with, sponsored by, or connected to the Viessmann company in any manner. Viessmann and all related trademarks, product names, and device names are trademarks or registered trademarks of Viessmann and remain the exclusive property of Viessmann.

What is Optolink?

Some Viessmann devices (at least those manufactured before roughly year 2014) expose an optical interface for communication with external devices named "Optolink".

This interface is typically located in the Vitotronic panel and officially supports a connection to the VitoConnect device. On the other hand such interface also allows tinkerers to read and write registers of the Viessmann devices to e.g. read telemetry data (temperatures, status of internal parts, etc) and write settings (e.g. heating mode, target temperatures, etc).

This project allows you to take control of your Viessmann device by hooking into the Optolink interface and sending all data to a local MQTT server, so that all your data is local and is never transiting the cloud of any vendor.

Architecture

Architecture

Hardware Required

  • A Single Board Computer (SBC) which is capable of running Python and has a USB-A connector (if you plan to use the original Viessmann Optolink USB cable). A typical choice is the Raspberry; myself I've been using the OLinuXino A64 as (slightly cheaper) alternative.
  • The Optolink USB cable to read/write; you have two main options: a) buy the original Viessmann cable on specialized shops such as https://www.loebbeshop.de/; see exact item here or b) build your own cable, more details available from other tinkerers like MyVitotronicLogger or at Optolink splitter readme

Software features

This project main features are:

  • Written to be reliable and run 24/7: careful exception handling, reconnects automatically to the MQTT broker in case of transient network issues, etc.
  • One-file configuration: configure all aspects of your Viessmann device from a single YAML config file (easy to backup and/or version in git); no need to hand-write HomeAssistant MQTT entity definitions!
  • Read and write support: allows both to read from your Viessmann device and also to set writable registers to e.g. change heating mode, change target temperatures, etc.
  • HomeAssistant friendly: although this project can be used with any home automation platform; it provides a number of features that make it very HomeAssistant friendly: in particular MQTT discovery messages make it possible to magically have all your Viessmann entities appear in HomeAssistant.
  • Easy installation via Pypi and docker

What this project does NOT have at this time:

Installation

This project supports 2 main installation methods: PyPi and Docker. Both methods are meant to be used from a Linux Operating system which has the USB/DIY cable attached (see "Hardware" section above).

Pypi package

python3 -m venv optolink2mqtt-venv
source optolink2mqtt-venv/bin/activate
pip install viessmann-optolink2mqtt

optolink2mqtt --help

Docker

When using Docker you will need to provide the YAML config file path in the docker run command and also provide the name of the serial port (e.g. /dev/ttyUSB0 in the following example):

docker run -d -v <your config file>:/etc/optolink2mqtt/optolink2mqtt.yaml \
    --device=/dev/ttyUSB0 \
    --hostname $(hostname) \
    --name optolink2mqtt \
    --restart=unless-stopped \
    ghcr.io/f18m/optolink2mqtt:latest

docker logs -f optolink2mqtt

Please note that the --restart=unless-stopped makes sure that the optolink2mqtt docker will be restarted after a reboot.

The docker image of optolink2mqtt supports 3 main architectures: amd64, armv7 and arm64.

Configuration file

This software accepts a declarative configuration in YAML format. Please look at the optolink2mqtt.yaml file as reference source for the syntax.

How to discover register addresses

TO BE WRITTEN

HomeAssistant Integration

This project allows a very easy integration with HomeAssistant. It's enough to populae the ha_discovery section of each register defined in the configuration file with some metadata specific for each sensor, to get the sensor automatically appear inside your HomeAssistant:

HA integration

This makes it possible to build in your HomeAssistant dashboard visual representation of your Viessmann device. E.g.. for my heat pump I was able to build the following dashboard:

HA dashboard

Labelling of the HW

Most likely your Viessmann device will stay around for a lot of time (many years hopefully), and so will do the SBC that connects it to your home automation platform. For this reason I suggest to provide some documentation for what is running on your SBC. A simple approach I like is to print a QR code pointing at this page and stick it physically on the SBC, to make it obvious to anybody inspecting it where to find the docs.

Here you can find a QR code I produced with the optimal miniQR code generator:

QRCode

Related projects

  • Optolink Splitter: this is the original project that inspired this one

  • Optolink Bridge: inspired from the "Optolink Splitter"; requires you to own a VitoConnect device and allows you to setup a "man in the middle" device

  • openv vcontrold: seems abandoned but contains a C-based implementation of the VS1 and VS2 protocols apparently. Its wiki has plenty of details although in German

  • VitoWiFi: a C++ implementation of VS1 (KW) and VS2 (P300) Optolink protocols, for use on ESP microcontrollers but also Linux systems

  • FloorHeatingController: firmware for a controller of floor heating valves, to help replace physical thermostat with HomeAssistant virtual thermostats

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

viessmann_optolink2mqtt-1.0.1.tar.gz (695.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

viessmann_optolink2mqtt-1.0.1-py3-none-any.whl (44.2 kB view details)

Uploaded Python 3

File details

Details for the file viessmann_optolink2mqtt-1.0.1.tar.gz.

File metadata

  • Download URL: viessmann_optolink2mqtt-1.0.1.tar.gz
  • Upload date:
  • Size: 695.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for viessmann_optolink2mqtt-1.0.1.tar.gz
Algorithm Hash digest
SHA256 20f919bc71aec3ac7d07e8407af5538bd74a328466f0e8ed51b87161305c0c54
MD5 721b0a05bb180655f7b03798c580f7ce
BLAKE2b-256 91e9c9a10576fc5cd5730bfe057a16ec152b13699e6108157a62468ef301c0ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for viessmann_optolink2mqtt-1.0.1.tar.gz:

Publisher: pypi-release.yml on f18m/viessmann-optolink2mqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viessmann_optolink2mqtt-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for viessmann_optolink2mqtt-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3620f3dd9713d47ef3036a7c08401470da8c85aa01cdc6ffd858ab4368ce3815
MD5 f30365c58ceaf19d193a906f6f712c96
BLAKE2b-256 282f1fca3dde25f3d76a935db29889adef08b2827a3cb5b9bf6bc5f302d922d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for viessmann_optolink2mqtt-1.0.1-py3-none-any.whl:

Publisher: pypi-release.yml on f18m/viessmann-optolink2mqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page