Advertisement
asyscom

Untitled

Jan 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.62 KB | None | 0 0
  1. - alias: Accensione/Spegnimento luce con apertura porta
  2.   trigger:
  3.   - platform: state
  4.     entity_id: binary_sensor.door_window_sensor_158d00023ea03f
  5.     from: 'off'
  6.     to: 'on'
  7.   action:
  8.     data:
  9.       entity_id: light.gateway_light_7c49ebb1dfcb
  10.       brightness: 50
  11.       rgb_color: [128, 0, 0]
  12.     service: light.turn_on
  13.    
  14. - alias: Accensione/Spegnimento luce con apertura porta
  15.   trigger:
  16.   - platform: state
  17.     entity_id: binary_sensor.door_window_sensor_158d00023ea03f
  18.     from: 'on'
  19.     to: 'off'
  20.   action:
  21.     data:
  22.       entity_id: light.gateway_light_7c49ebb1dfcb
  23.     service: light.turn_off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement