fix: route logger through UART0 instead of USB_SERIAL_JTAG

Waveshare's board wires log output through the same UART USB-C port
used for flashing. ESPHome's default hardware_uart for ESP32-S3 is
USB_SERIAL_JTAG, which is a separate physical port on this board,
so log output was going nowhere the flashing tool could see it.
This commit is contained in:
pyr0ball 2026-07-11 22:11:14 -07:00
parent 3d2172317c
commit 12b56e3153

View file

@ -39,6 +39,9 @@ ota:
logger:
level: DEBUG
hardware_uart: UART0 # this board's "UART" USB-C port (used for flashing) also does log printing
# per Waveshare's docs — ESPHome defaults S3 boards to USB_SERIAL_JTAG,
# a different physical port, which is why logs went silent
packages:
display: !include components/display.yaml