In an entities card on my dashboard, I have a couple things listed. Notably this produces a tidy little view of the lights in our livingroom and a couple main scenes that we use. The footer:
section buttons render as an actual oblong button which is perfect. But I can’t seem to figure our the right way to pass a transition time into them. I use the same scene in multiple locations with different transitions. However I can pass that transition into a type: button
in the upper half of of the configuration where I can define a tap_action but it produces just a line item that isn’t what I want from a UI perspective. Is there a way to get the footer buttons to accept the transition?
type: entities
title: Living Room
entities:
- light.signify_netherlands_b_v_lwb014_light_2
- light.signify_netherlands_b_v_lwb014_light
- light.signify_netherlands_b_v_lca005_light
- light.signify_netherlands_b_v_lct014_light
- type: divider
- type: button
icon: mdi:power
name: Livingroom Nightlight
tap_action:
action: call-service
service: scene.turn_on
data:
entity_id: scene.livingroom_nighttime_lights
transition: 5
- type: button
icon: mdi:power
name: Livingroom Daytime
tap_action:
action: call-service
service: scene.turn_on
data:
entity_id: scene.livingroom_daytime_lights
transition: 5
footer:
type: buttons
entities:
- entity: scene.livingroom_nighttime_lights
show_icon: true
show_name: true
name: Nighttime
- entity: scene.livingroom_daytime_lights
show_icon: true
show_name: true
name: Daytime