Skip to content
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

Update README.md #430

Open
wants to merge 1 commit into
base: master
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
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,43 @@ filter:
entity_id: this.entity_id
```

The three most recently used Philips HUE scenes from a room, with friendly scenes Names:

Example scene name
- Bathroom HUEz Chinatown
- Bathroom HUEz Tokyo
- Bathroom HUEz XHA Morning
- Bathroom HUEz XHA Night

Everything with xHA should be ignored, as these are only used for automations.
The scenes must be controlled via HA and not via the HUE app so that HA knows when the scene was last used.

```yaml
type: custom:auto-entities
show_empty: false
sort:
method: last_changed
reverse: true
count: 3
card:
title: Szenen
type: grid
square: false
columns: 3
card_param: cards
filter:
include:
- domain: scene
name: Bathroom*HUE*
options:
type: tile
name: ' '
state_content: name
exclude:
- domain: scene
name: ^*XHA-*
```

Example using templates:

```yaml
Expand Down