Trigger on repeated KNX payload

I’m using Home Assistant’s KNX integration and want to trigger an automation on every GroupValueWrite to 9/0/7, even if the value is the same (e.g. repeated “on” presses).

The telegrams show up in the KNX Group Monitor, but no knx_event is fired, and my automation doesn’t trigger. How can I catch repeated writes?

You will want to use a knx.telegram trigger: knx.telegram
If you do not use an condition every telegram will trigger.

Its advised to use knx.telegram instead of the event as that also requires you to create that event in yaml to filter it out: knx_events

1 Like

Thank you so much for the clue!