After upgrading to 115, I have a strange issue. I’m using an Inovelli Red Dimmer (via OpenZWave) to control Zigbee lights via automation. It’s been working well, however the automation has stopped working after the upgrade.
Troubleshooting so far:
- Zigbee lights are working and available to control in HA (as well as downstream in Alexa/HomeKit)
- Inovelli Switch is working and available to control in HA (toggling cuts/restores power to bulbs)
- All other Zigbee/Zwave based automations are working (ie. zigbee door sensors triggers zwave switch)
- Have tried rebooting HA several times. Tried restarting the OZW Add On, reloading Automations etc…
My Automation is what seems to have stopped working. When the event happens, the automation no longer fires.
Listening to Events ozw.scene_activated, I can see the tap data coming in from the dimmer switch as follows: (note, it does send an immediate second event which I’ve not included here, to let the hub know that it’s the single tap coming through and no further taps)
Event 0 fired 9:19 AM:
{
"event_type": "ozw.scene_activated",
"data": {
"node_id": 14,
"scene_id": 2,
"scene_label": "Scene 2",
"scene_value_id": 1,
"scene_value_label": "Pressed 1 Time"
},
"origin": "LOCAL",
"time_fired": "2020-09-23T13:19:19.196174+00:00",
"context": {
"id": "6311d5c4fd9f11eaba28e1cada408943",
"parent_id": null,
"user_id": null
}
}
My Automation doesn’t trigger, it’s below. This same automation triggered fine for the last week.
- id: '1600000723383'
alias: 'SWITCH-TAP: Kitchen Island 1 Tap Up'
description: Turns on Hue Lights
trigger:
- event_data:
entity_id: light.light_kitchen_island_level
node_id: 14
scene_id: 2
scene_value_id: 1
event_type: ozw.scene_activated
platform: event
condition: []
action:
- brightness_pct: 100
device_id: 23565df5ef894780852470468fa1d337
domain: light
entity_id: light.kitchen_lights
type: turn_on
mode: single