Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. esphomeyaml:
  2. name: test
  3. platform: ESP8266
  4. board: d1_mini
  5.  
  6. wifi:
  7. ssid: !secret wifi_ssid
  8. password: !secret wifi_password
  9. manual_ip:
  10. static_ip: 192.168.1.31
  11. gateway: 192.168.1.254
  12. subnet: 255.255.255.0
  13. # Example configuration entry
  14. i2c:
  15. sda: D2
  16. scl: D1
  17. scan: False
  18.  
  19. # Example configuration entry
  20. sensor:
  21. - platform: bme280
  22. temperature:
  23. name: "BME280-1 Temperature"
  24. oversampling: 16x
  25. pressure:
  26. name: "BME280-1 Pressure"
  27. humidity:
  28. name: "BME280-1 Humidity"
  29. # Address is not default!
  30. address: 0x76
  31. update_interval: 60s
  32.  
  33. # Example configuration entry
  34. mqtt:
  35. broker: !secret mqtt_addr
  36. username: !secret mqtt_user
  37. password: !secret mqtt_password
  38.  
  39. # Enable logging
  40. logger:
  41.  
  42. # Enable Home Assistant API
  43. api:
  44.  
  45. ota:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement