Skip to content

Commit 940e2b1

Browse files
committed
Release 0.48 blog post
1 parent be9debf commit 940e2b1

11 files changed

+677
-91
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ social:
144144
current_major_version: 0
145145
current_minor_version: 48
146146
current_patch_version: 0
147-
date_released: 2017-07-01
147+
date_released: 2017-07-02
148148

149149
# Either # or the anchor link to latest release notes in the blog post.
150150
# Must be prefixed with a # and have double quotes around it.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: page
3+
title: "Verisure Binary Sensor"
4+
description: "Instructions how to integrate Verisure binary sensors into Home Assistant."
5+
date: 2016-02-23 21:31 +0100
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: verisure.png
11+
ha_category: Binary Sensor
12+
ha_iot_class: "Cloud Polling"
13+
---
14+
15+
Integrates Verisure binary sensors into Home Assistant. See the [main component](/components/verisure/) for configuration instructions.
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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: Hub
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+
comfoconnect:
28+
host: 192.168.1.213
29+
```
30+
31+
Configuration variables:
32+
33+
- **host** (*Required*): The ip or hostname of the ComfoConnect LAN C bridge.
34+
- **name** (*Optional*): The name of this device as you want to see it in Home Assistant.
35+
- **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`.
36+
- **user_agent** (*Optional*): The name you want to supply when registering with the device. The default value is `Home Assistant`.
37+
- **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+
39+
To register the sensors, add the following to your `configuration.yaml` file:
40+
41+
```yaml
42+
sensor:
43+
- platform: comfoconnect
44+
resources:
45+
- current_temperature
46+
- current_humidity
47+
- outside_temperature
48+
- outside_humidity
49+
- air_flow_supply
50+
- air_flow_exhaust
51+
```
52+
53+
<p class='note'>
54+
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.
55+
</p>
Lines changed: 4 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
3-
title: "Zehnder ComfoAir Q Ventilation"
4-
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 ventilation systems into Home Assistant."
3+
title: "Zehnder ComfoAir Q Ventilation fans"
4+
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 fans into Home Assistant."
55
date: 2017-06-28 18:00
66
sidebar: true
77
comments: false
@@ -12,45 +12,6 @@ ha_category: Fan
1212
ha_release: "0.48"
1313
---
1414

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.
15+
Please see the [main component] for information how to set it up.
1816

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>
17+
[main component]: /components/comfoconnect/

source/_components/media_player.denon.markdown

Lines changed: 3 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,14 @@ ha_iot_class: "Local Polling"
1313
ha_release: 0.7.2
1414
---
1515

16-
17-
The `denon` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant.
16+
The `denon` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant. It might be that your device is supported by the [Denon AVR] platform.
1817

1918
Supported devices:
2019

2120
- Denon DRA-N5
2221
- Denon RCD-N8 (untested)
2322
- Denon RCD-N9 (partial support)
2423
- Denon AVR receivers with integrated Network support (partial support)
25-
- Denon AVR-X2000 (via denonavr platform)
26-
- Denon AVR-X2100W (via denonavr platform)
27-
- Denon AVR-X4100W (via denonavr platform)
28-
- Denon AVR-1912 (via denonavr platform)
29-
- Denon AVR-2312CI (via denonavr platform)
30-
- Denon AVR-3311CI (via denonavr platform)
31-
- Marantz M-CR603 (via denonavr platform)
32-
- Marantz M-RC610 (via denonavr platform)
33-
- Marantz SR5008 (via denonavr platform)
34-
- Marantz NR1604 (via denonavr platform)
35-
- Other Denon AVR receivers (via denonavr platform (untested))
36-
- Marantz receivers (experimental via denonavr platform)
37-
38-
<pre class='note'>
39-
If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality.
40-
</pre>
4124

4225
To add a Denon Network Receiver to your installation, add the following to your `configuration.yaml` file:
4326

@@ -55,36 +38,11 @@ Configuration variables:
5538
- **name** (*Optional*): Name of the device.
5639
5740
A few notes for platform: denon
41+
5842
- The receiver handles only one telnet connection and refuses others.
5943
- Be careful with the volume. 100% or even 50% is very loud.
6044
- To be able to wake up the receiver, activate the "remote" setting in the receiver's settings.
6145
- Play and pause are supported, toggling is not possible.
6246
- Seeking cannot be implemented as the UI sends absolute positions. Only seeking via simulated button presses is possible.
6347
64-
65-
**denonavr platform**
66-
```yaml
67-
# Example configuration.yaml entry
68-
media_player:
69-
- platform: denonavr
70-
host: IP_ADDRESS
71-
name: NAME
72-
show_all_sources: True / False
73-
zones:
74-
- zone: Zone2 / Zone3
75-
name: NAME
76-
```
77-
78-
Configuration variables:
79-
80-
- **host** (*Optional*): IP address of the device. Example: 192.168.1.32. If not set, auto discovery is used.
81-
- **name** (*Optional*): Name of the device. If not set, friendlyName of receiver is used.
82-
- **show_all_sources** (*Optional*): If True all sources are displayed in sources list even if they are marked as deleted in the receiver. If False deleted sources are not displayed (default). Some receivers have a bug that marks all sources as deleted in the interface. In this case this option could help.
83-
- **zones** (*Optional*): List of additional zones to be activated. They are displayed as additional media players with the same functionality Main Zone of the device supports
84-
- **zone**: Zone which should be activated. Valid options are Zone2 and Zone3
85-
- **name** (*Optional*): Name of the zone. If not set the name of the main device + zone as suffix is taken.
86-
87-
A few notes for platform: denonavr
88-
- Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform.
89-
- denonavr platform supports some additional functionalities like album covers, custom input source names and auto discovery.
90-
- Marantz receivers seem to a have quite simliar interface. Thus if you own one, give it a try.
48+
[Denon AVR]: /components/media_player.denonavr/
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
layout: page
3+
title: "Denon AVR Network Receivers"
4+
description: "Instructions how to integrate Denon AVR Network Receivers into Home Assistant."
5+
date: 2015-09-08 09:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: denon.png
11+
ha_category: Media Player
12+
ha_iot_class: "Local Polling"
13+
ha_release: 0.7.2
14+
---
15+
16+
17+
The `denonavr` platform allows you to control a [Denon Network Receivers](http://www.denon.co.uk/chg/product/compactsystems/networkmusicsystems/ceolpiccolo) from Home Assistant. It might be that your device is supported by the [Denon] platform.
18+
19+
Supported devices:
20+
21+
- Denon AVR-X2000
22+
- Denon AVR-X2100W
23+
- Denon AVR-X4100W
24+
- Denon AVR-1912
25+
- Denon AVR-2312CI
26+
- Denon AVR-3311CI
27+
- Marantz M-CR603
28+
- Marantz M-RC610
29+
- Marantz SR5008
30+
- Marantz NR1604
31+
- Other Denon AVR receivers (untested)
32+
- Marantz receivers (experimental)
33+
34+
<pre class='note'>
35+
If you have something else using the IP controller for your Denon AVR 3808CI, such as your URC controller, it will not work! There is either a bug or security issue with some models where only one device could be controlling the IP functionality.
36+
</pre>
37+
38+
To add a Denon Network Receiver to your installation, add the following to your `configuration.yaml` file:
39+
40+
```yaml
41+
# Example configuration.yaml entry
42+
media_player:
43+
- platform: denonavr
44+
host: IP_ADDRESS
45+
name: NAME
46+
show_all_sources: True / False
47+
zones:
48+
- zone: Zone2 / Zone3
49+
name: NAME
50+
```
51+
52+
Configuration variables:
53+
54+
- **host** (*Optional*): IP address of the device. Example: 192.168.1.32. If not set, auto discovery is used.
55+
- **name** (*Optional*): Name of the device. If not set, friendlyName of receiver is used.
56+
- **show_all_sources** (*Optional*): If True all sources are displayed in sources list even if they are marked as deleted in the receiver. If False deleted sources are not displayed (default). Some receivers have a bug that marks all sources as deleted in the interface. In this case this option could help.
57+
- **zones** (*Optional*): List of additional zones to be activated. They are displayed as additional media players with the same functionality Main Zone of the device supports
58+
- **zone**: Zone which should be activated. Valid options are Zone2 and Zone3
59+
- **name** (*Optional*): Name of the zone. If not set the name of the main device + zone as suffix is taken.
60+
61+
A few notes:
62+
63+
- Additional option the control Denon AVR receivers with a builtin web server is using the HTTP interface with denonavr platform.
64+
- denonavr platform supports some additional functionalities like album covers, custom input source names and auto discovery.
65+
- Marantz receivers seem to a have quite simliar interface. Thus if you own one, give it a try.
66+
67+
[Denon]: /components/media_player.denon/
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: page
3+
title: "Zehnder ComfoAir Q Ventilation sensors"
4+
description: "Instructions how to integrate Zehnder ComfoAir Q350/450/600 sensors 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: Sensor
12+
ha_release: "0.48"
13+
---
14+
15+
Please see the [main component] for information how to set it up.
16+
17+
[main component]: /components/comfoconnect/

source/_components/shiftr.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: page
33
title: "Shiftr.io"
44
description: "Transfer events to Shiftr.io."
5-
date: 2017-07-16 07:00
5+
date: 2017-06-16 07:00
66
sidebar: true
77
comments: false
88
sharing: true

0 commit comments

Comments
 (0)