Skip to content

Commit

Permalink
All rooms
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegordon committed Jul 14, 2024
1 parent a2250cb commit 51ef8aa
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/valetudo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_fronthall") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_fronthall") | map(attribute="attributes.mode")}}'
mode: '{{expand("input_boolean.vacuum_fronthall") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the floor of the front hall!"
Expand All @@ -148,6 +148,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_livingroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_livingroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the living room!"
Expand All @@ -169,6 +170,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_bootroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_bootroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the boot room floor!"
Expand All @@ -190,6 +192,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_kitchen") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_kitchen") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the kitchen floor!"
Expand All @@ -211,6 +214,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_hallway") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_hallway") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the hallway!"
Expand All @@ -232,6 +236,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_bathroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_bathroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the bathroom!"
Expand Down Expand Up @@ -275,6 +280,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_craftroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_craftroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to clean the craft room carpet!"
Expand All @@ -296,6 +302,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_guestroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_guestroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to clean the guest room!"
Expand All @@ -317,6 +324,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_bedroom") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_bedroom") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to clean the bedroom!"
Expand All @@ -338,6 +346,7 @@ script:
data:
variables:
segments: '{{expand("input_boolean.vacuum_ensuite") | map(attribute="attributes.room_id") | list | to_json }}'
mode: '{{expand("input_boolean.vacuum_ensuite") | map(attribute="attributes.mode") | list | to_json }}'
- service: script.tweet_engine
data_template:
tweet: "Dispatching my minion, Snowwhite the vacuum, to mop and clean the ensuite!"
Expand Down

0 comments on commit 51ef8aa

Please sign in to comment.