I’m having trouble getting my new Red Dimmer to work with central scenes on Home Assistant 0.109.6. I first tried the instructions from here but that didn’t work and yetsterday I tried the steps listed here. Neither worked. Here is the automation I have thats attempting to use double tap:
- id: hallway_double_up
alias: 2nd Floor Hallway Double Up
initial_state: true
trigger:
platform: event
event_type: zwave.scene_activated
event_data:
entity_id: zwave.hallway_light
scene_id: 2
scene_data: 3
action:- service: switch.turn_on
entity_id: switch.atticstairs- id: hallway_double_down
alias: 2nd Floor Hallway Double Down
initial_state: true
trigger:
platform: event
event_type: zwave.scene_activated
event_data:
entity_id: zwave.hallway_light
scene_id: 1
scene_data: 3
action:- service: switch.turn_off
entity_id: switch.atticstairs
And this is how it show in the log when I double tap:
2020-05-25 08:23:41.189 Detail, Node025, Received: 0x01, 0x0d, 0x00, 0x04, 0x00, 0x19, 0x05, 0x5b, 0x03, 0x6b, 0x83, 0x02, 0xc1, 0x00, 0x99
2020-05-25 08:23:41.189 Detail,
2020-05-25 08:23:41.193 Info, Node025, Received Central Scene set from node 25: scene id=2 in 7860 seconds. Sending event notification.
2020-05-25 08:23:41.193 Detail, Node025, Initial read of value
2020-05-25 08:23:41.193 Detail, Node025, Notification: ValueChanged
2020-05-25 08:24:03.274 Detail, Node025, Received: 0x01, 0x0d, 0x00, 0x04, 0x00, 0x19, 0x05, 0x5b, 0x03, 0x6c, 0x83, 0x02, 0xc1, 0x00, 0x9e
TIA for you help