Guest User

Google Voice

a guest
Apr 11th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.82 KB | None | 0 0
  1. notify:
  2.   platform: googlevoice
  3.   username: example@gmail.com
  4.   password: mypassword
  5.   name: Antonie
  6.  
  7. script:
  8.  # Turns on the bedroom lights and then the living room lights 10s later
  9.   wakeup:
  10.     alias: Wake Up
  11.     sequence:
  12.      # alias is optional
  13.       - alias: Bedroom lights on
  14.         execute_service: light.turn_on
  15.         service_data:
  16.           entity_id: group.bedroom1
  17.       - delay:
  18.          # supports seconds, milliseconds, minutes, hours, etc.
  19.           seconds: 10
  20.       - alias: Living room lights on
  21.         execute_service: light.turn_on
  22.         service_data:
  23.           entity_id: group.living_room
  24.       - alias: The sun has set
  25.         action:
  26.           service: notify.googlevoice
  27.           data:
  28.             message: 'The sun has set'
  29.             target:
  30.              - +841675xxxxxx
Add Comment
Please, Sign In to add comment