Collection of working z-wave configs

I had a hard time of setting up the Zwave.me Double paddle wall switch WCD1 (this also works with the newer model WCD2), so I would like to share the inputs I got from different forums:

  1. Include the device (send additional NIF according to the manual if it does not show up right away)
  2. Go to habmin and change the configuration parameters to:
    11: Send scenes 12: Send scenes 13: Send scenes 14: Send scenes
  3. Set all four Association Groups to a member for your controller (for example Group 1 … Node 1 … Member and so on)
    Again, send some NIF to transfer the new values to the device
  4. Start openhab in debug mode, push all buttons at least once and find out the scene numbers in openhab.log, you will need those for your items:
  5. Set up your items:

Switch WCD1_1_BUT1 “Test BUT 1” { zwave=“7:command=SCENE_ACTIVATION,scene=11,state=1” }
Switch WCD1_1_BUT3 “Test BUT 3” { zwave=“7:command=SCENE_ACTIVATION,scene=12,state=0” }
Switch WCD1_1_BUT2 “Test BUT 2” { zwave=“7:command=SCENE_ACTIVATION,scene=21,state=1” }
Switch WCD1_1_BUT4 “Test BUT 4” { zwave=“7:command=SCENE_ACTIVATION,scene=22,state=0” }
Switch WCD1_1_SW1 “Test WCD SW 1” (gTest)
Switch WCD1_1_SW2 “Test WCD SW 2” (gTest)

6.Set up your rules:

    rule "WCD1 Switch 1 ON"
    when
    Item WCD1_1_BUT1 received update ON
    then
    sendCommand(WCD1_1_SW1, ON)
    end
    rule "WCD1 Switch 1 OFF"
    when
    Item WCD1_1_BUT3 received update ON
    then
    sendCommand(WCD1_1_SW1, OFF)
    end
    rule "WCD1 Switch 2 ON"
    when
    Item WCD1_1_BUT2 received update ON
    then
    sendCommand(WCD1_1_SW2, ON)
    end
    rule "WCD1 Switch 2 OFF"
    when
    Item WCD1_1_BUT4 received update ON
    then
    sendCommand(WCD1_1_SW2, OFF)
    end

Now you are able to switch WCD1_1_SW1 with a push of buttons 1 and 3 to ON and OFF and WCD1_1_SW2 with buttons 2 and 4.

Have fun.