Skip to content

Commit 10daaa7

Browse files
michaelarnautsfabaff
authored andcommitted
ComfoConnect climate platform documentation. (home-assistant#2483)
* ComfoConnect climate platform documentation. * Update documentation for rewrite. * Update version * Minor style fixes:wq
1 parent 39d3e6c commit 10daaa7

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
layout: page
3+
title: "Zehnder ComfoAir Q Ventilation"
4+
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant."
5+
date: 2017-06-28 18:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: zehnder.png
11+
ha_category: Fan
12+
ha_release: "0.48"
13+
---
14+
15+
The `comfoconnect` component lets you control Zehnder ComfoAir [Q350](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q350-st)/[450](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q450-st)/[600](http://www.international.zehnder-systems.com/products-and-systems/comfosystems/zehnder-comfoair-q600-st)
16+
ventilation units from Home Assistant. You need a [ComfoConnect LAN C](http://www.zehnder.co.uk/products-and-systems/comfortable-indoor-ventilation/ms-comfoair-q/ideal-control#node-21233)
17+
bridge to connect the unit to your local network.
18+
19+
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of
20+
the unofficial [pycomfoconnect](https://github.com/michaelarnauts/comfoconnect) library.
21+
22+
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).
23+
24+
To set it up, add the following information to your `configuration.yaml` file:
25+
26+
```yaml
27+
climate:
28+
- platform: comfoconnect
29+
host: 192.168.1.213
30+
```
31+
32+
Configuration variables:
33+
34+
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
35+
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
36+
- **token** (*Optional*): The token you want to use when registering with the device. This is a random 32 char hexadecimal string. The default value is `00000000000000000000000000000001`.
37+
- **user_agent** (*Optional*): The name you want to supply when registering with the device. The default value is `Home Assistant`.
38+
- **pin** (*Optional*): The pin code to use when registering. This is `0000` by default. You only need to change this if you have changed the factory default pin.
39+
40+
To register the sensors, add the following to your `configuration.yaml` file:
41+
42+
```yaml
43+
sensor:
44+
- platform: comfoconnect
45+
resources:
46+
- current_temperature
47+
- current_humidity
48+
- outside_temperature
49+
- outside_humidity
50+
- air_flow_supply
51+
- air_flow_exhaust
52+
```
53+
54+
<p class='note'>
55+
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.
56+
</p>
9.46 KB
Loading

0 commit comments

Comments
 (0)