Advertisement
bafplus2

Untitled

Nov 2nd, 2021
890
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.73 KB | None | 0 0
  1. alias: TV aan en uit
  2. description: Tv aan en uitzetten op vaste tijden
  3. trigger:
  4.   - platform: time
  5.     id: 'on'
  6.     at: '07:00'
  7.   - platform: time
  8.     id: 'off'
  9.     at: '03:00'
  10. condition: []
  11. action:
  12.   - choose:
  13.       - conditions:
  14.           - condition: trigger
  15.             id: 'on'
  16.         sequence:
  17.           - type: turn_on
  18.             device_id: 7136a9319cf27057912844b29ae53f1e
  19.             entity_id: switch.stekker_tv
  20.             domain: switch
  21.       - conditions:
  22.           - condition: trigger
  23.             id: 'off'
  24.         sequence:
  25.           - type: turn_off
  26.             device_id: 7136a9319cf27057912844b29ae53f1e
  27.             entity_id: switch.stekker_tv
  28.             domain: switch
  29.     default: []
  30. mode: single
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement