You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/fan.comfoconnect.markdown
+25-12Lines changed: 25 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -2,26 +2,24 @@
2
2
layout: page
3
3
title: "Zehnder ComfoAir Q Ventilation"
4
4
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant."
5
-
date: 2017-04-22 18:00
5
+
date: 2017-06-17 18:00
6
6
sidebar: true
7
7
comments: false
8
8
sharing: true
9
9
footer: true
10
10
logo: zehnder.png
11
-
ha_category: Climate
12
-
ha_release: "0.45"
11
+
ha_category: Fan
12
+
ha_release: "0.47"
13
13
---
14
14
15
-
The `comfoconnect`climate platform let 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)
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
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
17
bridge to connect the unit to your local network.
18
18
19
19
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of
20
20
the unofficial [pycomfoconnect](https://github.com/michaelarnauts/comfoconnect) library.
21
21
22
-
This platform reads out the outdoor temperature and humidity, the indoor temperature and humidity, the current speed
23
-
mode (away, low, medium, high) and the extract and supply air flow (in m³ per hour). It also allows you to change the
24
-
fan speed.
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).
25
23
26
24
To set it up, add the following information to your `configuration.yaml` file:
27
25
@@ -30,15 +28,30 @@ climate:
30
28
platform: comfoconnect
31
29
host: 192.168.1.213
32
30
```
33
-
<p class='note'>
34
-
Note that it's not possible to have multiple connection to the bridge at the same time. If you have the mobile app open,
35
-
no new connections can be fetched since the platform won't be able to communicate with the ventilation system unit.
36
-
</p>
37
31
38
32
Configuration variables:
39
33
40
34
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
41
35
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
42
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`.
43
37
- **user_agent** (*Optional*): The name you want to supply when registering with the device. The default value is `Home Assistant`.
44
-
- **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.
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,
56
+
it will ask you to disconnect Home Assistant. If you close the app agian, Home Assistant will reconnect automatically.
0 commit comments