Advertisement
Guest User

Untitled

a guest
Nov 17th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.36 KB | None | 0 0
  1. - alias: Licht uit na 15 minuten weekdagen
  2.   trigger:
  3.     platform: state
  4.     entity_id: switch.sonoff_1
  5.     to: 'on'
  6.     for:
  7.       minutes: 15
  8.   condition:
  9.    condition: time
  10.    after: '06:00:00'
  11.    before: '09:00:00'
  12.    weekday:
  13.    - mon
  14.     - tue
  15.     - wed
  16.     - thu
  17.     - fri
  18.   action:
  19.     service: switch.turn_off
  20.     entity_id: switch.sonoff_1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement