Yesterday I made an automation based on a click event of a Shelly device. This worked perfectly fine, however today it stopped working. Nothing has changed to the configuration.
The automation is as follows:
alias: Hanglamp Kookeiland Omschakelen
description: ""
trigger:
- platform: event
event_type: Dimmer Eettafel channel 2 single.click
event_data:
device_id: 611ef08266662ff37ca078a65d3e0d38
channel: 2
click_type: single
condition: []
action:
- service: light.toggle
metadata: {}
data: {}
target:
entity_id: light.hanglamp_kookeiland
mode: single
It seems that the trigger is not seen by the automation.
If I go to Developer Tools → Events → Listen to events and listen for ‘shelly.click’ I get the following output when I push the button on the Shelly:
event_type: shelly.click
data:
device_id: 611ef08266662ff37ca078a65d3e0d38
device: shellydimmer2-C8C9A3708851
channel: 2
click_type: single
generation: 1
origin: LOCAL
time_fired: "2024-01-21T12:04:20.878808+00:00"
context:
id: 01HMNYGK8ERDZAMRE99FV8VYAT
parent_id: null
user_id: null
What could the problem be?