Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion source/_components/group.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ group:
default_view:
view: yes
entities:
- group.kitchen
- group.awesome_people
- group.climate
kitchen:
Expand All @@ -38,11 +39,26 @@ group:
- camera.demo_camera
- device_tracker.demo_paulus
- group.garden
climate:
name: Climate
view: no
entities:
- sensor.bedroom_temp
- sensor.porch_temp
- sensor.bathroom_humidity
awesome_people:
name: Awesome People
view: no
entities:
- device_tracker.dad_smith
- device_tracker.mom_smith
- device_tracker.dog_smith

```

Configuration variables:

- **view** (*Optional*): If yes then the entry will be shown as a view (tab).
- **view** (*Optional*): If yes then the entry will be shown as a view (tab) at the top.
- **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.
- **entities** (*Required*): array or comma delimited string, list of entities to group.
Expand Down