From 4aa8a3a4a9165df4b96ee42f86f34057d6f95edc Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 6 Apr 2025 19:21:03 -0500 Subject: [PATCH] added kitchen sequence --- conf/apps/apps.yaml | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/conf/apps/apps.yaml b/conf/apps/apps.yaml index 5a65d0e..a5a9f18 100644 --- a/conf/apps/apps.yaml +++ b/conf/apps/apps.yaml @@ -5,6 +5,7 @@ hello_world: simple_app: module: simple class: SimpleApp + extra: 1234 dependencies: - hello_world @@ -17,10 +18,25 @@ Perimeter: class: Perimeter another_arg: 1234 + sequence: + kitchen_loop: + name: Kitchen Loop + hot_reload: True + loop: True + steps: + - homeassistant/toggle: + entity_id: light.kitchen + - sleep: 3 + # - homeassistant/turn_on: + # entity_id: light.kitchen + # - sleep: 2 + # - homeassistant/turn_off: + # entity_id: light.kitchen + # - sleep: 2 + office_on: name: Office On - namespace: hass steps: - homeassistant/turn_on: entity_id: light.office_1 @@ -35,4 +51,13 @@ sequence: - homeassistant/turn_off: entity_id: light.office_1 - homeassistant/turn_off: - entity_id: light.office_2 \ No newline at end of file + entity_id: light.office_2 + +andarotajo: + module: andarotajo + class: GoogleDrive + dependencies: + - hello_world + - globals + # - perimeter + # - simple_app