I’ve set up an ESP32 with ESPHome using the serial_proxy component along with the required Native API and UART components. Here’s my current YAML config:
uart:
id : uartbus
rx_buffer_size: 1700
rx_pin:
number: 4
inverted: false
mode:
input: true
pullup: false
baud_rate: 115200
serial_proxy:
- id: serial_proxy_1
uart_id: uartbus
name: My Serial proxy
port_type: TTL
I’ve flashed it successfully, and the device shows up in Home Assistant via the ESPHome integration. The ESP32 is connected to another serial device that’s sending data over UART.
My question: How can I actually see or receive the serial data in Home Assistant? I expected some kind of entity or log to show the raw bytes/data stream, but I don’t see anything. Do I need:
A specific sensor/template to parse the data?
To use the ESPHome API directly (e.g., via Python script)?
Some HA integration or automation to read the proxied serial stream?
Logger settings or debug mode to capture it?
What am I missing? Any example configs or tutorials for displaying/using this serial data in dashboards, automations, etc.?
This is new for the 2026.5 release, so you likely need the currently available 2026.5.0b0 beta release or higher of Home Assistent too. And I suspect you’ll need a HA integration that requires a serial interface.
If your goal is to connect a Home Assistant integration that expects a serial port (like the Denon RS232 integration), serial_proxy is the right tool — that's exactly what it's designed for.
If what you're after is direct access to the raw serial data over the network — to inspect it, or connect to it from something other than HA — you might have better luck with esphome-uart-link. It exposes the UART as a plain TCP socket instead of going through the ESPHome native API.
Then you can nc <esp-ip> 5000 from any machine on your network and see the data stream directly. Fair warning: it's a newer external component that I threw together for a separate project, but if you just need to get eyes on the serial traffic, it might be a simpler path than trying to make serial_proxy do something it wasn't really built for.