From 9ed887e9b1b49ebaa2860626431c3fa98a1560dd Mon Sep 17 00:00:00 2001 From: Sebastian von Minckwitz Date: Sun, 4 Dec 2016 09:16:11 +0100 Subject: [PATCH] Add option to hide the group card switch (#1516) * Add option to hide the group card switch * Changed hide_switch to control --- source/_components/group.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/_components/group.markdown b/source/_components/group.markdown index 6bd24c8572c..ea610609d60 100644 --- a/source/_components/group.markdown +++ b/source/_components/group.markdown @@ -45,6 +45,7 @@ Configuration variables: - **view** (*Optional*): If yes then the entry will be shown as a view (tab). - **name** (*Optional*): Name of the group. - **icon** (*Optional*): If the group is a view, this icon will show at the top in the frontend instead of the name. If it's not a view, then the icon shows when this group is used in another group. +- **control** (*Optional*): If hidden then the group switch will be hidden. - **entities** (*Required*): array or comma delimited string, list of entities to group.

@@ -52,7 +53,7 @@ Configuration variables: Example of groups shown as views in the frontend.

-If all entities in a group are switches or lights then Home Assistant adds a switch at the top of the card that turns them all on/off at once. +If all entities in a group are switches or lights then Home Assistant adds a switch at the top of the card that turns them all on/off at once. If you want to hide this switch, set `control` to `hidden`. You can create views (tabs) that contain other groups. Notice in the example below that in order to refer to the group "Living Room", you use `group.living_room` (lowercase and spaces replaced with underscores).