Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. - alias: Cubo Sala Rotate Dim Candeeiro
  2. trigger:
  3. platform: mqtt
  4. topic: 'zigbee2mqtt/0x00158d000269e1e5'
  5. condition:
  6. condition: template
  7. value_template: "{{ 'rotate_left' == trigger.payload_json.action }}"
  8. action:
  9. - service: light.turn_on
  10. data_template:
  11. entity_id: light.0x90fd9ffffe6cb60c
  12. brightness: >
  13. {{states.light['0x90fd9ffffe6cb60c'].attributes.brightness| int - 50}}
  14.  
  15. - alias: Cubo Sala Rotate Dim Candeeiro
  16. trigger:
  17. platform: mqtt
  18. topic: 'zigbee2mqtt/0x00158d000269e1e5'
  19. condition:
  20. condition: template
  21. value_template: "{{ 'rotate_right' == trigger.payload_json.action }}"
  22. action:
  23. - service: light.turn_on
  24. data_template:
  25. entity_id: light.0x90fd9ffffe6cb60c
  26. brightness: >
  27. {{states.light['0x90fd9ffffe6cb60c'].attributes.brightness| int + 50}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement