Advertisement
Einstine1984

Actionable Notification

Apr 7th, 2022
1,064
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.63 KB | None | 0 0
  1. alias: Leaving reminder
  2. description: ''
  3. trigger:
  4.   - platform: state
  5.     entity_id: input_boolean.voskov_is_home
  6.     to: 'off'
  7. condition: []
  8. action:
  9.   - service: notify.mobile_app_op9
  10.     data:
  11.       title: Leaving
  12.       message: Turn stuff off?
  13.       data:
  14.         actions:
  15.           - action: ALMOST
  16.           - title: Almost
  17.   - wait_for_trigger:
  18.       - platform: event
  19.         event_type: mobile_app_notification_action
  20.         id: ALMOST
  21.         event_data:
  22.           action: ALMOST
  23.     continue_on_timeout: false
  24.     timeout: '00:50:00'
  25.   - service: script.turn_almost_everything_off
  26.     data: {}
  27. mode: single
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement