Hi, I am trying to update home assistant preview edition to ESPHome 2025.12.1 and receive an error.
I have ‘taken control’ of this device because I have added a bme680 sensor to the Gove Port. All was well until ESPHome 2025.12.0.
Can anyone point me in the right direction for a resolution please?
This is the sensor entry:
sensor:
- platform: bme680
i2c_id: grove_i2c
temperature:
name: "Bedroom Temperature"
pressure:
name: "Bedroom Air Pressure"
humidity:
id: "humidity"
name: "Bedroom Humidity"
gas_resistance:
id: "gas_resistance"
name: "Bedroom Gas Resistance"
update_interval: 60s
- platform: template
name: "Bedroom Air Quality"
id: iaq
icon: "mdi:gauge"
# calculation: comp_gas = log(R_gas[ohm]) + 0.04 log(Ohm)/%rh * hum[%rh]
lambda: |-
return log(id(gas_resistance).state) + 0.04 * id(humidity).state;
state_class: "measurement"
and this is the error.
INFO ESPHome 2025.12.1
INFO Reading configuration /config/esphome/home-assistant-voice-bedroom.yaml...
INFO Updating https://github.com/esphome/home-assistant-voice-pe@dev
INFO Updating https://github.com/esphome/esphome@72499eaed2ed54316aca90d368053aa2e1a54f5f
WARNING GPIO46 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq/#why-am-i-getting-a-warning-about-strapping-pins
WARNING GPIO0 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq/#why-am-i-getting-a-warning-about-strapping-pins
WARNING GPIO3 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq/#why-am-i-getting-a-warning-about-strapping-pins
WARNING GPIO45 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq/#why-am-i-getting-a-warning-about-strapping-pins
Failed config
media_source.http_request: [source /data/packages/dc43710d/home-assistant-voice.yaml:1558]
Component media_source.http_request requires component http_request.
platform: http_request
id: http_source
buffer_size: 500000