Skip to content

Add siren groups to Documentation #38856

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: next
Choose a base branch
from
Open
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
16 changes: 15 additions & 1 deletion source/_integrations/group.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ha_category:
- Notifications
- Organization
- Sensor
- Siren
- Switch
ha_release: pre 0.7
ha_iot_class: Calculated
Expand All @@ -33,6 +34,7 @@ ha_platforms:
- media_player
- notify
- sensor
- siren
- switch
ha_integration_type: helper
---
Expand All @@ -48,6 +50,7 @@ The following entities can be grouped:
- [cover (covers)](/integrations/cover/)
- [fan (fans)](/integrations/fan/)
- [switch (switches)](/integrations/switch/)
- [siren (sirens)](/integrations/siren/)
- [lock (locks)](/integrations/lock/)
- [light (lights)](/integrations/light/)
- [event (events)](/integrations/event/)
Expand All @@ -66,7 +69,7 @@ The older notification actions can only be grouped via YAML configuration.

## Group behavior

### Binary sensor, light, and switch groups
### Binary sensor, light, siren, and switch groups

In short, when any group member entity is `on`, the group will also be `on`. A complete overview of how groups behave:

Expand Down Expand Up @@ -287,6 +290,17 @@ sensor:
- sensor.temperature_hallway
```

Example YAML configuration of a siren group:

```yaml
# Example configuration.yaml entry
siren:
- platform: group
entities:
- siren.alarm
- siren.door_alarm
```

Example YAML configuration of a switch group:

```yaml
Expand Down