Skip to content

Commit 33e7be6

Browse files
cdce8pfrenck
authored andcommitted
Added cover group platform (home-assistant#4638)
* Added doc for MultiCover * Added parameter description * entity_id_regex * Removed winter protection * Changed to 'group' platform * Changed 'Group Cover' to 'Cover Group' * ✏️ Small grammar fix * ⬆️ Updated ha_release.
1 parent fd27ef1 commit 33e7be6

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
layout: page
3+
title: "Cover Group"
4+
description: "Instructions how to setup grouped covers in Home Assistant."
5+
date: 2018-02-11 10:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
ha_category: Cover
11+
ha_release: 0.66
12+
ha_iot_class: "Local Push"
13+
logo: home-assistant.png
14+
---
15+
16+
The `group` platform can create a cover that combines several cover entities into one.
17+
18+
To enable `Cover Groups` in your installation, add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
cover:
23+
- platform: group
24+
entities:
25+
- cover.hall_window
26+
- cover.living_room_window
27+
```
28+
29+
{% configuration %}
30+
name:
31+
description: Name to use in the frontend.
32+
required: false
33+
type: string
34+
default: "Cover Group"
35+
entities:
36+
description: List of all cover entities you want to control.
37+
required: true
38+
type: [string | list]
39+
{% endconfiguration %}
40+
41+
## {% linkable_title Functionality %}
42+
43+
It works best if you group covers with the same supported features together (like support for `open`/`close`/`stop`/`position`/`tilt controls`), but is not limited to it. In case you have bundled covers with different features together, the controls will only affect those covers that support the actions.

0 commit comments

Comments
 (0)