3.0 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, redirect_from
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | redirect_from | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
page | Zehnder ComfoAir Q Ventilation | Instructions on how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant. | 2017-06-28 18:00 | true | false | true | true | zehnder.png |
|
0.48 |
|
The comfoconnect
component lets you control Zehnder ComfoAir Q350/450/600
ventilation units from Home Assistant. You need a ComfoConnect LAN C
bridge to connect the unit to your local network.
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of the unofficial pycomfoconnect library.
The component has a fan platform to view and control the ventilation speed, and a sensors platform to read out the outdoor temperature and humidity, the indoor temperature and humidity, and the extract and supply air flow (in m³ per hour).
To set it up, add the following information to your configuration.yaml
file:
comfoconnect:
host: IP_ADDRESS
{% configuration %}
host:
description: The IP or hostname of the ComfoConnect LAN C bridge.
required: true
type: string
name:
description: The name of this device as you want to see it in Home Assistant.
required: false
default: ComfoAirQ
type: string
token:
description: The token you want to use when registering with the device. This is a random 32 char hexadecimal string.
required: false
default: "00000000000000000000000000000001
"
type: string
user_agent:
description: The name you want to supply when registering with the device.
required: false
default: "Home Assistant
"
type: string
pin:
description: The pin code to use when registering. You only need to change this if you have changed the factory default pin.
required: false
default: "0000
"
type: integer
{% endconfiguration %}
To register the sensors, add the following to your configuration.yaml
file:
sensor:
- platform: comfoconnect
resources:
- current_temperature
- current_humidity
- outside_temperature
- outside_humidity
- air_flow_supply
- air_flow_exhaust
Note that it's not possible to have multiple connection to the bridge at the same time. This component will keep the connection open, and if you open the app, it will ask you to disconnect Home Assistant. If you close the app again, Home Assistant will reconnect automatically.