40 lines
597 B
YAML
40 lines
597 B
YAML
child_app:
|
|
module: child
|
|
class: Child
|
|
dependencies:
|
|
- parent_app
|
|
|
|
sibling_app:
|
|
module: sibling
|
|
class: Sibling
|
|
dependencies:
|
|
- parent_app
|
|
|
|
parent_app:
|
|
module: parent
|
|
class: Parent
|
|
dependencies:
|
|
- grand-parent_app
|
|
|
|
grand-parent_app:
|
|
module: grand_parent
|
|
class: GrandParent
|
|
|
|
|
|
|
|
|
|
sequence:
|
|
setup_tv:
|
|
name: Setup TV
|
|
namespace: hass
|
|
steps:
|
|
- homeassistant/turn_on:
|
|
entity_id: switch.living_room_tv
|
|
|
|
- sleep: 30
|
|
|
|
- remote/send_command:
|
|
entity_id: roku.living_room
|
|
loop_step:
|
|
times: 5
|
|
interval: 0.5 |