I am trying to react on a state change of a swich I have in my KNX home automation. I added the following home assistant configuration for KNX:
knx:
event:
- address:
- "0/0/1"
switch:
- name: "Kamer 3 - bel gang"
address: "0/0/1"
and the following configuration for my automation:
alias: Bel voordeur - push notification
trigger:
- platform: state
entity_id:
- switch.kamer_3_bel_gang
to: "On"
action:
- device_id: *********************67b725a520a892
domain: mobile_app
type: notify
message: Iemand belt aan
title: Bel voordeur
mode: single
When I monitor the bus of KNX, I see the message being sent. I do however not receive any kind of notification when this message is sent out over the bus. The group address matches, the state value as well. Can anybody help me on figuring out what is missing here? Thanks!