Advertisement
Guest User

Untitled

a guest
Apr 19th, 2020
3,308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. esphome:
  2. name: cabinet_2
  3. platform: ESP32
  4. board: esp-wrover-kit
  5.  
  6. wifi:
  7. ssid: "WIFI_SSID"
  8. password: "WIFI_PWD"
  9.  
  10. # Enable fallback hotspot (captive portal) in case wifi connection fails
  11. ap:
  12. ssid: "Cabinet 2 Fallback Hotspot"
  13. # password: "2YQw1dp3lN4k"
  14.  
  15. captive_portal:
  16.  
  17. # Enable logging
  18. logger:
  19.  
  20. # Enable Home Assistant API
  21. api:
  22.  
  23. ota:
  24.  
  25. web_server:
  26.  
  27. output:
  28. - platform: ledc
  29. pin: GPIO19
  30. id: gpio_19
  31. # min_power: 10%
  32.  
  33. # Example usage in a light
  34. light:
  35. - platform: monochromatic
  36. output: gpio_19
  37. name: "Cabinet 2"
  38. default_transition_length: 500ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement