Hi,
after upgrading ESPHome to 2023.3.0, my Pico W stopped working. It doesn’t connect to the wifi and I get no logs on the USB serial port. The only way to get any output from it is to turn on UART logging. Which shows this:
[I][logger:258]: Log initialized
[C][ota:469]: There have been 0 suspected unsuccessful boot attempts.
[D][rp2040.preferences:117]: Saving preferences to flash...
[I][logger:258]: Log initialized
[C][ota:469]: There have been 0 suspected unsuccessful boot attempts.
[D][rp2040.preferences:117]: Saving preferences to flash...
My config looks like this:
esphome:
name: "pico-dht22"
on_boot:
then:
- logger.log: "Startar!"
rp2040:
board: rpipicow
framework:
# Required until https://github.com/platformio/platform-raspberrypi/pull/36 is merged
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
# Enable logging
logger:
level: VERY_VERBOSE
hardware_uart: UART0
# Enable Home Assistant API
api:
encryption:
key: "secret"
ota:
password: "secret"
sensor:
- platform: dht
model: AM2302
pin: GPIO17
temperature:
name: "Temperatur vardagsrum (DHT22)"
humidity:
name: "Luftfuktighet vardagsrum (DHT22)"
accuracy_decimals: 1
update_interval: 10s
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot in case wifi connection fails
ap:
ssid: "Pico-Ds18B20 Fallback Hotspot"
password: "somethingelse"
I have tried commenting out all the dht22 stuff, same result.