What it says on the tin - my goal is to use the auto entities to filter out all the scenes for a given room and then display all those scenes as clickable chips. Here’s the code I’ve gotten so far:
- type: custom:auto-entities
filter:
include:
- domain: scene
area: Living Room
options:
tap_action:
action: call-service
service: scene.turn_on
service_data:
entity_id: scene.{{friendly_name}}
exclude: []
card:
type: custom: mushroom-chips-card
It works fine as soon as I go to use the default ‘entities’ card but if I go to include a mushroom chips card, the whole thing falls apart. Any idea how I’d make that work?