home-assistant.io/source/_components/comfoconnect.markdown
Franck Nijhof c464056402
Making our website faster, cleaner and prettier (#9853)
* 🔥 Removes octopress.js

* 🔥 Removes use of root_url var

* 🔥 Removes Octopress generator reference from feed

* 🔥 Removes delicious support

* 🔥 Removes support for Pinboard

* 🔥 Removes support for Disqus

* 🔥 Removes support for Google Plus

* ↩️ Migrate custom after_footer to default template

* ↩️ Migrate custom footer to default template

* ↩️ Migrate custom header to default template

* 🔥 Removes unused template files

* 🚀 Places time to read directly in post template

* 🚀 Removes unneeded capture from archive_post.html template

* 🔥 🚀 Removes unused, but heaving sorting call in component page

* 🚀 Merged javascripts into a single file

* 🔥 Removes more uses of root_url

* 🚀 Removal of unneeded captures from head

* 🔥 🚀 Removal of expensive liquid HTML compressor

* 🔥 Removes unneeded templates

* 🚀 Replaces kramdown with GitHub's CommonMark 🚀

* 💄 Adds Prism code syntax highlighting

*  Adds support for redirect in Netlify

* ↩️ 🔥 Let Netlify handle all developer doc redirects

* ✏️ Fixes typo in redirects file: Netify -> Netlify

* 🔥 Removes unused .themes folder

* 🔥 Removes unused aside.html template

* 🔥 Removes Disqus config leftover

* 🔥 Removes rouge highlighter config

* 🔥 Removes Octopress 🎉

* 💄 Adjust code block font size and adds soft wraps

* 💄 Adds styling for inline code blocks

* 💄 Improve styling of note/warning/info boxes + div support

* 🔨 Rewrites all note/warning/info boxes
2019-07-15 22:17:54 +02:00

2.9 KiB

title, description, logo, ha_category, ha_release, redirect_from
title description logo ha_category ha_release redirect_from
Zehnder ComfoAir Q Ventilation Instructions on how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant. zehnder.png
Fan
Sensor
0.48
/components/fan.comfoconnect/
/components/sensor.comfoconnect/

The comfoconnect integration 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 integration 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 integration 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.