I’ve setup the Alexa cloud skill for my Echo dot and I’m having trouble having the script attached to the scene to go past the delay portion.
alexa_play_bedtime_music_for_eva:
alias: 'Bedtime Music For Eva'
sequence:
- service: light.turn_on
data:
entity_id: light.eva_s_lamp
transition: 2
xy_color: [0.66, 0.33]
brightness: 75
- service: media_player.play_media
data:
entity_id: media_player.eva
media_content_id: “Classical Highlights”
media_content_type: "I_HEART_RADIO"
- delay: 00:10:00
- service: media_player.pause_media
data:
entity_id: media_player.eva
- service: light.turn_off
data:
entity_id: light.eva_s_lamp
transition: 2
Any help would be appreciated.
Thanks!