esphome: name: new_node platform: ESP8266 board: nodemcuv2 wifi: ssid: "TR-1" password: "1234" manual_ip: # Set this to the IP of the ESP static_ip: 192.168.1.240 # Set this to the IP address of the router. Often ends with .1 gateway: 192.168.1.254 # The subnet of the network. 255.255.255.0 works for most home networks. subnet: 255.255.255.0 # DHT11 sensor configuration i2c: sda: 4 scl: 5 scan: True sensor: - platform: bme280 temperature: name: "BME280 Temperature" oversampling: 4x pressure: name: "BME280 Pressure" humidity: name: "BME280 Humidity" address: 0x76 update_interval: 15s # Enable logging logger: # Enable Home Assistant API api: password: "1234" ota: password: "1234"