WALLC-S with Z-wave JS

I recently upgraded to Z-Wave JS on my Raspberry Pi 4 system. I have two WALLC-S switches. Previously, under the integrated ZWAVE, I had to define entities in the zwave config file, otherwise only the battery entities would show. I am back to having only battery entities show, but the z-wave js log shows the scenes being activated.

Does anyone know how to tie this activated scene to a trigger without an entity? Or how to create the four entities?

Here is what my log shows when I press a button.

Subscribed to Z-Wave JS Log Messages…
2021-05-24T08:51:12.411Z SERIAL « 0x010b00040020055b0317000298 (13 bytes)
2021-05-24T08:51:12.413Z SERIAL » [ACK] (0x06)
2021-05-24T08:51:12.416Z DRIVER « [Node 032] [REQ] [ApplicationCommand]
└─[CentralSceneCCNotification]
sequence number: 23
key attribute: KeyPressed
scene number: 2
2021-05-24T08:51:12.421Z CNTRLR [Node 032] [!] [Central Scene] scene[002]: 0
2021-05-24T08:51:12.424Z CNTRLR « [Node 032] received CentralScene notification {
“nodeId”: 32,
“ccId”: “Central Scene”,
“ccCommand”: “0x03”,
“payload”: “0x170002”

alias: Zwave me Wall controller  ON
description: ''
trigger:
  - platform: event
    event_type: zwave_js_value_notification
    event_data:
      node_id: 67
      property_key: '001'
condition: []
action:
  - service: light.turn_on
    target:
      entity_id: light.xxx
mode: single
2 Likes

Awesome. Thank you so much.