Add alert to put away clothes
This commit is contained in:
parent
7e7443a9f8
commit
a65aca68ad
@ -7,3 +7,17 @@ washing_machine:
|
|||||||
message: Washing machine is done, take out laundry
|
message: Washing machine is done, take out laundry
|
||||||
notifiers:
|
notifiers:
|
||||||
- mobile_app_iphone
|
- mobile_app_iphone
|
||||||
|
|
||||||
|
washing_clothes_dry:
|
||||||
|
name: Put clothes away
|
||||||
|
done_message: Good job
|
||||||
|
entity_id: input_boolean.washing_clothes_dry
|
||||||
|
state: 'on'
|
||||||
|
repeat: 30
|
||||||
|
message: Put clothes away
|
||||||
|
notifiers:
|
||||||
|
- mobile_app_iphone
|
||||||
|
data:
|
||||||
|
actions:
|
||||||
|
- action: CLOTHES_PUT_AWAY
|
||||||
|
title: Done
|
||||||
|
@ -46,3 +46,17 @@
|
|||||||
- service: input_boolean.turn_off
|
- service: input_boolean.turn_off
|
||||||
target:
|
target:
|
||||||
entity_id: input_boolean.washing_machine_done
|
entity_id: input_boolean.washing_machine_done
|
||||||
|
|
||||||
|
- id: washing_clothes_put_clothes_away
|
||||||
|
alias: '[Washing clothes] Put clothes away'
|
||||||
|
mode: single
|
||||||
|
trigger:
|
||||||
|
- platform: state
|
||||||
|
entity_id:
|
||||||
|
- input_boolean.washing_machine_done
|
||||||
|
for:
|
||||||
|
hours: 24
|
||||||
|
action:
|
||||||
|
- service: input_boolean.turn_on
|
||||||
|
target:
|
||||||
|
entity_id: input_boolean.washing_clothes_dry
|
||||||
|
@ -49,3 +49,17 @@
|
|||||||
action: ARRIVE_HOME
|
action: ARRIVE_HOME
|
||||||
action:
|
action:
|
||||||
- service: script.arrive_home
|
- service: script.arrive_home
|
||||||
|
|
||||||
|
- id: mobile_action-clothes_put_away
|
||||||
|
alias: '[Mobile-action] Clothes puth away'
|
||||||
|
description: ''
|
||||||
|
mode: single
|
||||||
|
trigger:
|
||||||
|
- platform: event
|
||||||
|
event_type: mobile_app_notification_action
|
||||||
|
event_data:
|
||||||
|
action: CLOTHES_PUT_AWAY
|
||||||
|
action:
|
||||||
|
- service: input_boolean.turn_off
|
||||||
|
target:
|
||||||
|
entity_id: input_boolean.washing_clothes_dry
|
||||||
|
@ -73,6 +73,9 @@ input_boolean:
|
|||||||
washing_machine_done:
|
washing_machine_done:
|
||||||
name: "Washing machine done"
|
name: "Washing machine done"
|
||||||
icon: "mdi:washing-machine"
|
icon: "mdi:washing-machine"
|
||||||
|
washing_clothes_dry:
|
||||||
|
name: "Washing clothes dry"
|
||||||
|
icon: "mdi:hanger"
|
||||||
put_laundry_away:
|
put_laundry_away:
|
||||||
name: "Put laundry away"
|
name: "Put laundry away"
|
||||||
icon: "mdi:tshirt-crew"
|
icon: "mdi:tshirt-crew"
|
||||||
|
Loading…
Reference in New Issue
Block a user