I build for a ESP32 with display a application and implemented events but get error in de log. I’m using the latest version of esphome and binding. My understanding is that events should work so I’m doing something wrong. Please advice
2026-05-03 08:43:58.542 [WARN ] [home.internal.handler.ESPHomeHandler] - [esp32badkamer] Unhandled message of type io.esphome.api.EventResponse. This is lack of support in the binding. Content: 'key: 1153862517
event_type: "uit"
'.
2026-05-03 08:43:59.692 [WARN ] [home.internal.handler.ESPHomeHandler] - [esp32badkamer] Unhandled message of type io.esphome.api.EventResponse. This is lack of support in the binding. Content: 'key: 2314023730
event_type: "sonos_4uur"
'.
I’m using ESPHome event: entities on an ESP32-S3 touch display to send button press events to openHAB. The events arrive at the binding as shown in the log:
[WARN] [ESPHomeHandler] - [esp32badkamer] Unhandled message of type
io.esphome.api.EventResponse. This is lack of support in the binding.
Content: 'key: 1153862517 event_type: "uit"'.
I have allowActions: true set in the Thing configuration.
Your README mentions that the binding adds trigger types accessible via UI rules, and mentions ESPHomeEventTrigger as event source with the form no.seime.openhab.binding.openhab$<device_id>.
Two questions:
Is the EventResponse (ESPHome event: platform) currently supported, or only HA Native API actions? The WARN suggests the binding receives but discards the EventResponse entirely before it reaches the rule engine.
OK, then it isn’t supported yet (didn’t know it existed). However the button entity type looks a bit similar and is supported. Any chance you could try that instead of the event type?
There is no roadmap but this seems like a low hanging fruit (disclaimer: did not consult the esphome doc)