Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1.  
  2. # Momentary Switch
  3. switch:
  4. - platform: gpio
  5. pin: 2
  6. id: up_relay
  7. restore_mode: ALWAYS_ON
  8. - platform: template
  9. name: "Left Shades Up"
  10. icon: "mdi:blinds-open"
  11. turn_on_action:
  12. - switch.turn_off: up_relay
  13. - delay: 500ms
  14. - switch.turn_on: up_relay
  15.  
  16. - platform: gpio
  17. pin: 0
  18. id: down_relay
  19. restore_mode: ALWAYS_ON
  20. - platform: template
  21. name: "Left Shades Down"
  22. icon: "mdi:blinds"
  23. turn_on_action:
  24. - switch.turn_off: down_relay
  25. - delay: 500ms
  26. - switch.turn_on: down_relay
  27.  
  28.  
  29. sensor:
  30. - platform: wifi_signal
  31. name: "Left Shade WiFi signal"
  32. update_interval: 60s
  33.  
  34. - platform: uptime
  35. name: "Left Shades uptime"
  36.  
  37. text_sensor:
  38. - platform: version
  39. name: "Left Shades ESPHome version"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement