I have a Fibaro dimmer 2 and a Telldus TZWP-100 plug switch. The Dimmer has two inputs, S1 and S2. S1 controlls the light directly connected to the load, and I want S2 to control the Telldus switch (on/off). I am having a hell of time getting this to work. I just migrated from Domoticz where I got this to work - Home Assistant is different.
I have this in the automations.yaml:
- id: '1553445392815'
alias: lights
trigger:
- event_data:
entity_id: light.fibaro_system_fgd212_dimmer_2_level
scene_id: 24
event_type: zwave.scene_activated
platform: event
action:
- data:
entity_id: switch.telldus_tzwp_100_plug_in_switch_switch
service: switch.turn_off
Nothing happens when I double-click the momentary switch, which is scene_id: 24.
I get this in the OZW log:
2019-04-05 20:07:20.619 Detail, Node002, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x02, 0x04, 0x2b, 0x01, 0x18, 0x00, 0xc5
2019-04-05 20:07:20.622 Detail,
2019-04-05 20:07:20.624 Info, Node002, Received Scene Activation set from node 2: scene id=24 now. Sending event notification.
2019-04-05 20:07:20.638 Detail, Node002, Notification: SceneEvent
So it seems it is picking something up, but the automation isn’t triggering. I can trigger it manually from the HA ui, but not from the switch. I feel like I’ve been tinkering with this for a long while now with no progress.
I’ve seen scene_data being used some places, but not sure if that’s what I’m missing?
Any help would be greatly appreciated.