Advertisement
bowentz

Untitled

Feb 2nd, 2023
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. esphome:
  2. name: esp32gendev1
  3. platform: ESP32
  4. board: esp-wrover-kit
  5.  
  6. esp32_ble_tracker:
  7.  
  8. wifi:
  9. ssid: !secret wifi_ssid
  10. password: !secret wifi_password
  11.  
  12. manual_ip:
  13. # Set this to the IP of the ESP
  14. static_ip: 192.168.1.183
  15. # Set this to the IP address of the router. Often ends with .1
  16. gateway: 192.168.1.1
  17. # The subnet of the network. 255.255.255.0 works for most home networks.
  18. subnet: 255.255.255.0
  19.  
  20.  
  21. # Enable fallback hotspot (captive portal) in case wifi connection fails
  22. ap:
  23. ssid: "Esp32Gendev1 Fallback Hotspot"
  24. password: "xxxxxxx"
  25.  
  26. captive_portal:
  27.  
  28. # Enable logging
  29. logger:
  30. # level: VERBOSE
  31.  
  32. # Enable Home Assistant API
  33. api:
  34.  
  35. ota:
  36.  
  37. sensor:
  38. - platform: inkbird_ibsth1_mini
  39. mac_address: 49:22:10:16:0D:94
  40. temperature:
  41. name: "Inkbird ESP Back Porch Temperature"
  42. battery_level:
  43. name: "Inkbird ESP Back Porch Battery Level"
  44.  
  45.  
  46. button:
  47. - platform: restart
  48. name: Restart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement