Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. esphome:
  2. name: esphome_12v
  3. platform: ESP8266
  4. board: nodemcuv2
  5.  
  6. wifi:
  7. ssid: "xxxxx"
  8. password: "xxxxx"
  9.  
  10. # Enable fallback hotspot (captive portal) in case wifi connection fails
  11. ap:
  12. ssid: "Esphome Node1 Fallback Hotspot"
  13. password: "xxxxxx"
  14.  
  15. captive_portal:
  16.  
  17. # Enable logging
  18. logger:
  19.  
  20. # Enable Home Assistant API
  21. api:
  22. password: "xxxxxx"
  23.  
  24. ota:
  25. password: "xxxxxxxxx"
  26.  
  27. mqtt:
  28. broker: 192.168.0.XXX
  29.  
  30. # Example configuration entry
  31. sensor:
  32. - platform: adc
  33. pin: A0
  34. name: "12V"
  35. update_interval: 2s
  36. filters:
  37. - multiply: 27.42
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement