Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2022
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.66 KB | None | 0 0
  1. alias: MBR Bath Shade Open
  2. description: ''
  3. trigger:
  4.   - platform: state
  5.     entity_id: input_boolean.bill_phone_charging
  6.     to: 'off'
  7.   - platform: state
  8.     entity_id: input_boolean.xxx_phone_charging
  9.     to: 'off'
  10.   - platform: time
  11.     at: '08:59:00'
  12.   - platform: time
  13.     at: '05:01:00'
  14. condition:
  15.   - condition: state
  16.     entity_id: input_boolean.bill_phone_charging
  17.     state: 'off'
  18.   - condition: state
  19.     entity_id: input_boolean.xxx_phone_charging
  20.     state: 'off'
  21.   - condition: time
  22.     after: '05:00:00'
  23.     before: '09:00:00'
  24. action:
  25.   - service: cover.open_cover
  26.     target:
  27.       entity_id: cover.mbr_blind
  28.     data: {}
  29. mode: single
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement