Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.59 KB | None | 0 0
  1. - alias: Lys tændes udenfor
  2.   initial_state: 'on'
  3.   trigger:
  4.     platform: state
  5.     entity_id: switch.kontakt_terrasse
  6.     to: 'on'
  7.   action:
  8.     - service: notify.mobile_app_jacob
  9.       data:
  10.         message: 'Kl: {{ now().strftime("%H:%M") }}'
  11.         title: "Lys ude tændt"  
  12.  
  13. - alias: Lys slukkes udenfor
  14.   initial_state: 'on'
  15.   trigger:
  16.     platform: state
  17.     entity_id: switch.kontakt_terrasse
  18.     to: 'off'
  19.   action:
  20.     - service: notify.mobile_app_jacob
  21.       data:
  22.         message: 'Kl: {{ now().strftime("%H:%M") }}'
  23.         title: "Lys ude slukket"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement