Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a66fd86

Browse files
author
Michaël Arnauts
committed
Update documentation for rewrite.
1 parent b83e91f commit a66fd86

File tree

1 file changed

+25
-12
lines changed

1 file changed

+25
-12
lines changed

source/_components/climate.comfoconnect.markdown renamed to source/_components/fan.comfoconnect.markdown

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,24 @@
22
layout: page
33
title: "Zehnder ComfoAir Q Ventilation"
44
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
66
sidebar: true
77
comments: false
88
sharing: true
99
footer: true
1010
logo: zehnder.png
11-
ha_category: Climate
12-
ha_release: "0.45"
11+
ha_category: Fan
12+
ha_release: "0.47"
1313
---
1414

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)
1616
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)
1717
bridge to connect the unit to your local network.
1818

1919
There is an official iPhone and Android app to configure and control your unit. This platform connects with the help of
2020
the unofficial [pycomfoconnect](https://github.com/michaelarnauts/comfoconnect) library.
2121

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).
2523

2624
To set it up, add the following information to your `configuration.yaml` file:
2725

@@ -30,15 +28,30 @@ climate:
3028
platform: comfoconnect
3129
host: 192.168.1.213
3230
```
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>
3731
3832
Configuration variables:
3933
4034
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
4135
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
4236
- **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`.
4337
- **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.
57+
</p>

0 commit comments

Comments
 (0)