[ST EDGE] SmartThings Edge Driver for Leviton VRCS4-M0Z and VRCS4-MRZ (Beta)

SmartThings Edge Driver for Leviton VRCS4-M0Z and VRCS4-MRZ (Beta)

See updated version here. Release version

Edge Driver implements the Leviton VRCS4 device as a group of 4 on/off switches controlled by corresponding buttons on the VRCS4 device. Using SmartThings allows you to configure routines to integrate each switch to control other SmartThings devices.

The VRCS4 is an older device and discontinued by Leviton. I have a couple of them, they have yet to fail, and are very convenient to use as a 4-switch device in a single gang footprint. While originally intended as a Scene Controller by Leviton, this was converted to a 4-port switch using a Groovy DTH several years ago. I have adapted this into an Edge Driver and added a few refinements.

This driver supports the Leviton VRCS4-M0Z and VRCS4-MRZ models of the switch consisting of 4 buttons (with LEDs) and a dimmer toggle.

In the case of the MRZ model, it configures the scene controller. When you pair the MRZ into SmartThings, two devices are actually created. The scene controller which will use the VRCS4 driver and a Z-Wave switch which will control the internal load.

  • The device exposes four independent On/Off switches which can be controlled either from the device or via the SmartThings UI
  • LEDs are automatically controlled based on the state of the switch
  • Enabling Sync (in the Settings) allows multiple VRCS4 switches to be paired for 3-way or multi-way operation. Any device with Sync enabled, will mirror switch operations on all device that have Sync enabled. Out of box, Sync is disabled such that each Leviton VRCS4 device is managed independently.
  • The following is NOT integrated with SmartThings and relies on the Z-Wave associations to function
    – Dimming Up/Down (the fifth button) can be enabled to control dimming (see Settings below).

Note that this driver will NOT support the VRCS4-MRZ model which includes a embedded load switch.

Fingerprint

  • id: “Leviton ZRCS4”
    deviceLabel: Leviton 4 Button Switch
    manufacturerId: 0x001D
    productType: 0x0802
    productId: 0x0261

To install

  • Use this channel link: VRCS4 Channel Invitation to enroll install the driver on your hub.
  • Use the SmartThings app to exclude your device (there is currently no way to switch from a Groovy DTH to an Edge driver except by deleting and then adding the device).
  • Use Add device → Scan nearby in the SmartThings app to include your device. Your device should pick up this driver if the fingerprint matches.

Code

github.com:
GitHub - harobinson/SmartThings-VRCS4

Settings

  • Sync: Turning on Sync will create an equivalent of an n-way switch for all VRCS4’s in your hub what have the Sync option available. E.g. turning on a switch will be mirrored on every other Sync’d VRCS4 (corresponding switch will be turned on and LED will be lit).
  • Switch 1-4 device: The following relies on Z-Wave associations and is not integrated with SmartThings app in any way. Enter the Z-Wave device id (decimal) for the device that you want to control. Each device will be associated with the VRCS4 so that the dimming button (button 5) will control the Z-Wave device button that was last pressed.

Internal implementation

Basic operation is as follows:

  • Associations are configured for groups 1-8 with groups 1 and 5 association with the first button, group 2 and 6 for the second button, and so forth (Association:Set)
  • Scenes are configured in the same manner associating each scene with the corresponding group (SceneControllerConf:Set)
  • A top button press will send messages for group 1 if the LED is off, and group 5 if the LED is off.
  • A button press results in a SceneActivation message with the corresponding scene provided as a parameter.
  • The appropriate SmartThings component event is generated to turn the switch on or off as appropriate.
  • Added some debounce logic as the Leviton device typically generates multiple SceneActivation messages per button press.
  • Finally, the LEDs are controlled by using a proprietary Leviton command to the device.

If Sync is configured on multiple Leviton switches, both the SmartThings switch state and LEDs are mirrored across all sync’ed devices.

The SmartThings UI displays 4 switches (Switch 1, Switch 2, Switch 3, and Switch 4) that can be controlled either from the SmartThings UI (LEDs are sync’ed) or on the physical device. You can connect them to a SmartThings device using routines.

You may see some LED flashes during operation but I observed that latency is acceptable.

Bugs

  • Rotating button on first press from SmartThings UI. When the driver is first initialized, pressing a switch ON may result in constantly rotating button. Pressing Back Arrow and reselecting the device will clear the condition and operations will work correctly after this initial behavior.

Roadmap

  • Support a released (non-beta) when I get enough user feedback. I only have tested it in my environment with 2 Leviton switches.
  • Create a dashboard for the switch. Currently the device will display Off in the dashboard view.
  • Create a configure command to simplify integrating Z-Wave devices with Dimming function.

Acknowledgments

  • Brian Dalhem (@bdahlem) for the original DTH groovy code.
  • Jason Brown (@j9brown) for documenting Leviton proprietary command for LED control.
  • The SmartThings community (@jdroberts, @h0ckeysk8er, @philh30) for answering my newbie questions on edge drivers.
2 Likes

Nice work!

I will just note because we get this question frequently, and always have:

The VRCS4 is a different device using different commandsets than the VRCZ4. This edge driver is only for the S4.

VRCS4

https://www.leviton.com/en/products/vrcs4-m0z

VRCZ4

https://www.leviton.com/en/products/vrcz4-m0z

When you see them side by side, it’s easy to tell the difference because the zone controller (with the Z) has the LEDs on the left and is using tiny rocker switches to allow for turning each zone on and off.

The scene controller (with an S) just has momentary buttons with the LEDs at the bottom of each button, and then may have a single rocker switch at the bottom.

But if you just take a quick glance at the picture or if you are just reading about it and don’t notice a difference in the model numbers, it’s pretty easy to get confused.

So know which one you have before you start looking for an edge driver for it. :thinking:

@JDRoberts there is another model VRCS4-MRZ , it has a internal load. Harobinson wrote in the first post that this driver is not developed for them. But I will try

Thanks Harobinson for the driver, have you already tryied use this driver with VRCS4-MRZ?

1 Like

Good point, yes, there is a subvariant. -MRZ has the internal relay, -M0Z does not.

I’ll be glad to try to help you get the MRZ to work.

  1. Need to add the MRZ fingerprint. Can you send the RAW description from the old IDE for the device? This should, in theory, allow the device to use my driver.

  2. I will add a few debugging messages so that I can see what the device sends.

  • Initial configuration messages
  • Press buttons 1, 2, 3, 4 → they should all go from off to on
  • Press buttons 1, 2, 3, 4 (if they are on) → what do they send after.

This should give me enough hints to see if we can get it working.

Glad to try.

Harobinson, thanks for try help.

Would be this what you ask? “Raw Description zw:L type:0100 mfr:001D prod:1302 model:0243 ver:0.02 zwv:2.67 lib:07 cc:85,2D,7C,77,82,73,86,72,91 ccOut:2B,2C”

Thanks in advance

I just added the fingerprint to the driver.

@JDRoberts, this is my first time publishing a channel. I updated the driver and did:
“smartthings edge:drivers:package -I” to the channel that I published.

Do I need to do anything else to push it to the shared channel?

@M_A_U, if I did correctly then the updated driver with the new fingerprint should be delivered to you within the next few hours.

Thanks.

I’m sorry, I don’t know those details. (Since I depend on a voice reader, I don’t usually get down into code details.)

If you start a topic under the “writing edge drivers“ section of the forum, I’m sure somebody will help you there.

Thanks. I reread all documentation and there doesn’t seem to be an additional step required.

@MAU, please tell us if the driver can be installed within the next few hours.

1 Like

Hello Guys, sorry by the delay.

Whitout your driver installed in my HUB. When I include the VRCS4-MRZ , my hub l finds two devices “Z-Wave Remote” and “Z-Wave Switch Generic” that is the internal LOAD.

But, using your driver my hub finds two times VRCS4-MRZ , one of them works correctly the other no and not find the internal LOAD.

Is there some way to use the driver just for the VRCS4? And for the internal load keep adding like “Zwave Switch Generic”?

Here is the Raw Description individually:

For the INTERNAL LOAD:

Raw Description zw:L type:1000 mfr:001D prod:1302 model:0243 ver:0.02 zwv:2.67 lib:07 cc:25,85,72,86,77,2B,2C,73,91 ccOut:82

For the VRCS4-MRZ:

Raw Description zw:L type:0100 mfr:001D prod:1302 model:0243 ver:0.02 zwv:2.67 lib:07 cc:85,2D,7C,77,82,73,86,72,91 ccOut:2B,2C

And guys , sorry about my english, but I think that I made myself undestoood. If not pleasy let me know.

And thanks again

Thank you for the feedback. This is my first edge driver and so we may learn together while we get it working.

  • Refining fingerprint so that only the VRCS4-MRZ is not used for the remote load.

The fingerprint that I configured was:

  • id: “Leviton ZRCS4-MRZ”
    deviceLabel: Leviton 4 Button Switch with Relay
    manufacturerId: 0x001D
    productType: 0x1302
    productId: 0x0243
    deviceProfileName: Leviton-zrcs4-pr

My Raw description is:
zw:L type:0100 mfr:001D prod:0802 model:0261 ver:0.02 zwv:2.97 lib:01 cc:85,2D,7C,77,82,73,86,72,91 ccOut:2B,2C

I don’t know how I would refine my criteria to exclude the embedded load. I may be able to do it by incorporating the type field. Let me see.

  • For the VRCS4-MRZ side:

Good if you can return the logs that are generated for the switch:
Use

smartthings edge:drivers:logcat

and enter in the ip address of your hub and select VRCS4-MRZ driver. If possible, use the Smartthings UI to switch the driver (to another device driver) and then switch it back to VRCS4-MRZ driver so that you can record the full log contents from the driver initialization.

a) Are the LEDs working correctly? The code assumes 4 LEDs. How is the top (the one corresponding to the internal load) one being handled. Good for you to send me a description of: I press Button 1 (top button) and the LED turns on. I press Button 2, and … Good for you to do the same for all of the buttons both in on and off state. The logs would be significant.

b) What happens when you control the switch through the SmartThings UI. Good for you to do the same (turn on/off) each switch so that you can record the actions.

Send me the full logs (use the … (preformatted text) so that the logs are readable.

I’ll be glad to try to fix things so that your switches will work correctly.

Harobinson

Sorry , but I don’t know how or where access to make these logs. Could you explain with more details? Sorry I am not a developer.

And Yes, Leds are working correctly even when I switch through the SmartThings UI

Ok, for the LEDs, does it actually work for the top switch as I thought that this was exclusive controlled differently.

Here are the instructions on installing the cli on your computer.

Best regards

Thank you Harobinson , I was able to install and use. I don’t know if I have made the right way in the logs. Follow above:

`? Select a driver. 3
2023-02-27T23:38:26.565733418+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:26.574112418+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“main”,“positional_args”:{}}
2023-02-27T23:38:26.578239085+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:26.595292085+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-02-27T23:38:26.616355418+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(7a87138c) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:26.618733418+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x01”, src_channel=0}
2023-02-27T23:38:26.625608751+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-27T23:38:26.758573751+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(7a87138c) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:32.476191421+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:32.563663088+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch2”,“positional_args”:{}}
2023-02-27T23:38:32.576785088+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:32.578074421+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch2”,“state”:{“value”:“on”}}
2023-02-27T23:38:32.787110421+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(b27065a2) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:32.788183754+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x03”, src_channel=0}
2023-02-27T23:38:32.832831088+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-27T23:38:33.004880088+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(b27065a2) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:36.223621423+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:36.250314089+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch3”,“positional_args”:{}}
2023-02-27T23:38:36.251694756+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:36.254132756+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch3”,“state”:{“value”:“on”}}
2023-02-27T23:38:36.271602089+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(830a369c) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:36.273193423+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x07”, src_channel=0}
2023-02-27T23:38:36.287601423+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-27T23:38:36.458408423+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(830a369c) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:38.164151090+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:38.188067757+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch4”,“positional_args”:{}}
2023-02-27T23:38:38.194098090+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:38.195326424+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch4”,“state”:{“value”:“on”}}
2023-02-27T23:38:38.230718757+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(942b4e44) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:38.231673090+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x0F”, src_channel=0}
2023-02-27T23:38:38.239094757+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-27T23:38:38.358264090+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(942b4e44) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:45.246252427+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:45.268104427+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“main”,“positional_args”:{}}
2023-02-27T23:38:45.274116427+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:45.275349427+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-02-27T23:38:45.308071427+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(f4e99673) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:45.309006427+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x01”, src_channel=0}
2023-02-27T23:38:45.316934094+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Led Sanca device thread event handled
2023-02-27T23:38:45.448951427+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(f4e99673) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:48.629703429+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:48.654800095+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch2”,“positional_args”:{}}
2023-02-27T23:38:48.656164762+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:48.657401762+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch2”,“state”:{“value”:“on”}}
2023-02-27T23:38:48.678567095+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(536c8222) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:48.679495429+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x03”, src_channel=0}
2023-02-27T23:38:48.687653095+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Led Sanca device thread event handled
2023-02-27T23:38:48.848115095+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(536c8222) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:50.815575763+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:50.820168096+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch3”,“positional_args”:{}}
2023-02-27T23:38:50.824259430+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:50.825566430+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch3”,“state”:{“value”:“on”}}
2023-02-27T23:38:50.862651430+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(c1d2a271) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:50.871540430+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x07”, src_channel=0}
2023-02-27T23:38:50.873315430+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Led Sanca device thread event handled
2023-02-27T23:38:51.048060096+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(c1d2a271) transmit status: TRANSMIT_COMPLETE_OK
2023-02-27T23:38:52.768304430+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler capability
2023-02-27T23:38:52.857583097+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> received command: {“args”:{},“capability”:“switch”,“command”:“on”,“component”:“switch4”,“positional_args”:{}}
2023-02-27T23:38:52.936112431+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found CapabilityCommandDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-27T23:38:52.936984097+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch4”,“state”:{“value”:“on”}}
2023-02-27T23:38:52.993916097+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(265dea0f) queued for radio transmission: CC:91, CID:0x00
2023-02-27T23:38:53.002427764+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: d371041b-e91e-4326-85b2-a2975d640f71 [6F] (Led Sanca)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x0F”, src_channel=0}
2023-02-27T23:38:53.020555764+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Led Sanca device thread event handled
2023-02-27T23:38:53.157091097+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(265dea0f) transmit status: TRANSMIT_COMPLETE_OK

Just to let you know, led Sanca is the internal load and Keypad *MAU* is the VRCS4-MRZ. PLease let me know if you want more somethings.

Thanks you again
`

Thanks for the logs.

I don’t think that you pressed the buttons on the switch itself. It would be good to get the logs when you press buttons 1-4 (them all off), and them all on and send me back the logs.

Also, press the dimmer button both up and down.

I think that this is all I would need.

Thanks

Henry

1 Like

Hi Harobinson

Yes you are right, I haven´t pressed on switch I make it using smartthings UI. Soon when I arrive in my home I will make it and send logs here. Apologize my mistake.

2 Likes

Here are the logs.

2023-02-28T20:28:09.627418169+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:09.634112169+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=5}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x05\xFF”, src_channel=0, version=1}
2023-02-28T20:28:09.650215503+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:09.651066503+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:09.652276169+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:09.653636836+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“off”}}
2023-02-28T20:28:09.705423503+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(97ff1b8e) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:09.706488503+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x0E”, src_channel=0}
2023-02-28T20:28:09.713787169+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:09.848329836+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(97ff1b8e) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:10.035778170+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:10.036763170+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=5}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x05\xFF”, src_channel=0, version=1}
2023-02-28T20:28:10.045290836+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:10.048358503+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:10.054330836+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:10.055173503+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:10.056536503+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:13.867346838+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:13.874125838+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=6}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x06\xFF”, src_channel=0, version=1}
2023-02-28T20:28:13.889866838+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:13.896858838+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:13.898142505+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:13.899339171+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch2”,“state”:{“value”:“off”}}
2023-02-28T20:28:13.921374505+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(01387b8f) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:13.922325171+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x0C”, src_channel=0}
2023-02-28T20:28:13.929678838+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:14.048355505+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(01387b8f) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:14.141113505+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:14.142098838+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=6}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x06\xFF”, src_channel=0, version=1}
2023-02-28T20:28:14.144003838+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:14.145210505+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:14.150653838+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:14.151489838+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:14.152845838+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:17.398561840+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:17.411875506+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=7}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x07\xFF”, src_channel=0, version=1}
2023-02-28T20:28:17.416677506+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:17.424455840+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:17.426047840+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:17.427252506+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch3”,“state”:{“value”:“off”}}
2023-02-28T20:28:17.449043173+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(bcaaa468) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:17.449985173+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x08”, src_channel=0}
2023-02-28T20:28:17.487881173+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:17.619669840+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(bcaaa468) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:17.672144173+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:17.673640840+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=7}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x07\xFF”, src_channel=0, version=1}
2023-02-28T20:28:17.683914840+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:17.686499507+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:17.689514840+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:17.694720507+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:17.695705507+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:20.237646841+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:20.244142174+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=8}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x08\xFF”, src_channel=0, version=1}
2023-02-28T20:28:20.260294508+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:20.261151508+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:20.262372841+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:20.269747508+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch4”,“state”:{“value”:“off”}}
2023-02-28T20:28:20.291521841+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(21ba6325) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:20.292470508+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x00”, src_channel=0}
2023-02-28T20:28:20.300969508+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:20.450700841+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(21ba6325) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:20.641539175+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:20.642927841+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=8}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x08\xFF”, src_channel=0, version=1}
2023-02-28T20:28:20.653658841+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:20.656760841+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:20.662426508+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:20.663349841+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:20.664705841+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:25.487185844+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:25.505679177+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=1}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x01\xFF”, src_channel=0, version=1}
2023-02-28T20:28:25.510831177+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:25.515390844+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:25.521368844+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:25.522585510+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“main”,“state”:{“value”:“on”}}
2023-02-28T20:28:25.576004177+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(1b79ce44) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:25.577066510+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x01”, src_channel=0}
2023-02-28T20:28:25.584567510+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:25.723308844+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(1b79ce44) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:27.405642178+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:27.406812511+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=2}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x02\xFF”, src_channel=0, version=1}
2023-02-28T20:28:27.424209845+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:27.428574178+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:27.429861511+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:27.431053845+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch2”,“state”:{“value”:“on”}}
2023-02-28T20:28:27.506233845+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(1a7e89ee) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:27.507298845+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x03”, src_channel=0}
2023-02-28T20:28:27.514585178+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:27.628234178+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(1a7e89ee) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:27.942438845+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:27.943944845+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=2}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x02\xFF”, src_channel=0, version=1}
2023-02-28T20:28:27.957943178+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:27.958803845+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:27.960015178+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:27.961209845+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:27.962550178+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:29.656316846+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:29.657541179+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=3}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x03\xFF”, src_channel=0, version=1}
2023-02-28T20:28:29.662725846+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:29.672909846+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:29.674335179+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:29.675553179+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch3”,“state”:{“value”:“on”}}
2023-02-28T20:28:29.695931846+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(95829279) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:29.696877846+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x07”, src_channel=0}
2023-02-28T20:28:29.706301179+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:29.848313846+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(95829279) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:30.054541179+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:30.055518512+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=3}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x03\xFF”, src_channel=0, version=1}
2023-02-28T20:28:30.065334512+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:30.088319179+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:30.089159846+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:30.090378512+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Repeated press
2023-02-28T20:28:30.091702512+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:32.274836514+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:32.276038180+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={dimming_duration=“default”, scene_id=4}, cmd_class=“SCENE_ACTIVATION”, cmd_id=“SET”, dst_channels={}, encap=“NONE”, payload=“\x04\xFF”, src_channel=0, version=1}
2023-02-28T20:28:32.298873514+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:32.299733180+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Received Scene_Activation
2023-02-28T20:28:32.300953514+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Number of linked devices: 1
2023-02-28T20:28:32.302145847+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> emitting event: {“attribute_id”:“switch”,“capability_id”:“switch”,“component_id”:“switch4”,“state”:{“value”:“on”}}
2023-02-28T20:28:32.329339180+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(8a3a08f5) queued for radio transmission: CC:91, CID:0x00
2023-02-28T20:28:32.330277847+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> sending Z-Wave command: {cmd_class=“MANUFACTURER_PROPRIETARY”, cmd_id=0, dst_channels={}, encap=“AUTO”, err=“unsupported command”, payload=“\x1D\x0D\x01\xFF\x0F”, src_channel=0}
2023-02-28T20:28:32.337565180+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:32.448296847+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Z-Wave command(8a3a08f5) transmit status: TRANSMIT_COMPLETE_OK
2023-02-28T20:28:34.886054848+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:34.890829848+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={ignore_start_level=false, start_level=0, up_down=false}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“START_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“\x00\x00”, src_channel=0, version=1}
2023-02-28T20:28:34.918418515+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:34.919259848+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:34.921417181+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:35.905803515+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:35.907006182+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“STOP_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“”, src_channel=0, version=1}
2023-02-28T20:28:35.908871849+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:35.910081849+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:35.911254515+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:36.046165515+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:36.053827515+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={ignore_start_level=false, start_level=0, up_down=false}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“START_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“\x00\x00”, src_channel=0, version=1}
2023-02-28T20:28:36.074481182+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:36.075322849+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:36.077474182+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:36.326907515+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:36.334503515+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“STOP_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“”, src_channel=0, version=1}
2023-02-28T20:28:36.335885515+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:36.340018182+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:36.343652849+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:38.312221850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:38.322147850+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={ignore_start_level=false, start_level=0, up_down=true}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“START_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“\x40\x00”, src_channel=0, version=1}
2023-02-28T20:28:38.323649516+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:38.324900516+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:38.326079183+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:38.533310850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:38.534291850+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“STOP_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“”, src_channel=0, version=1}
2023-02-28T20:28:38.536117850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:38.537331517+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:38.539957850+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:39.123254850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:39.133617850+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={ignore_start_level=false, start_level=0, up_down=true}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“START_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“\x40\x00”, src_channel=0, version=1}
2023-02-28T20:28:39.135031850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:39.136270517+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:39.137460517+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled
2023-02-28T20:28:39.363133850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Received event with handler unnamed
2023-02-28T20:28:39.364340850+00:00 INFO Z-Wave Leviton 4-Button Scene Controller <ZwaveDevice: b3552ef4-a539-4983-98c8-050d83bea60c [6E] (Keypad MAU)> received Z-Wave command: {args={}, cmd_class=“SWITCH_MULTILEVEL”, cmd_id=“STOP_LEVEL_CHANGE”, dst_channels={}, encap=“NONE”, payload=“”, src_channel=0, version=1}
2023-02-28T20:28:39.366209850+00:00 TRACE Z-Wave Leviton 4-Button Scene Controller Found ZwaveDispatcher handler in Z-Wave Leviton 4-Button Scene Controller
2023-02-28T20:28:39.367426850+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller ------ Dimming was pressed.
2023-02-28T20:28:39.368597184+00:00 DEBUG Z-Wave Leviton 4-Button Scene Controller Keypad MAU device thread event handled

The four button lights were on wwhen I started this. I have turned off them and back on again. For finish I pressed diming butons. For VRCS4 ot looks your driving is working fine, the problem is the internal load.

Please let me know if can I do more something.

Thanks Harobinson

Thank you for this. This really helps.

So here are my questions:

  1. How does button 1 work?

    • If the LED is off and you press it, it controls any attached load AND it sends a message to the hub?
    • If you turn if off (either from the UI or from the button), it turns off the load and sends a message.
  2. This just confuses me. You said that when you pair the VRCS4-MRZ, two devices are created. A VRCS4 and a switch. Is the switch totally independent of the button? That, I don’t understand.

Ok, in the next few days (maybe this weekend), I will modify the driver as follows:

  • If will allow the VRCS4 device to be created.
    Raw Description zw:L type:0100 mfr:001D prod:1302 model:0243 ver:0.02 zwv:2.67 lib:07 cc:85,2D,7C,77,82,73,86,72,91 ccOut:2B,2C

  • I will not pair the internal load with the VRCS4 device driver. You would have to pair it with the Z-wave switch.

Let’s see how this works. Any insight on my first question (how button 1 works with internal load) will help me.

Thanks

Henry

This device had two different generations with completely different pairing behaviors.

The first generation was able to be paired to any Z wave controller, and did indeed show up as two different devices.

The newer generation, however, required some Leviton proprietary code, and could only pair the internal relay when using its own controller unit.

You can find lots of discussion of this issue on forums for other home automation platforms. Here’s the one from vera.

Problems with Leviton VRCS4-MRZ 4-scene controller with switch - Lighting & Load Control - Ezlo Community

  1. Button 1 is not doing anything with the internal load, it is working like the others 3 button using your drive. But I am able to set up all buttons if I want.

  2. Actually, as the internal load was recognized like a VRCS4-MRZ too, it is not working in any way.
    It is recognized by the hub like other VRCS4-MRZ with 4 buttons. But If I exclude your driver from my hub , then when I pair my VRCS4-MRZ, it finds Z-WAVE REMOTE and Z-WAVE GENERIC SWITCH . The Z-WAVE REMOTE that is my VRCS-4 buttons doens;t work anything. But the Z-WAVE GENERIC SWITCH(INTERNAL LOAD) works fine and I can turn it on and off this way using the first button or using SMARTTHINGS UI. But all others buttons doens[t works and I am not able to set up them like I want.

Using your DRIVE here , Smarthings UI shows IT. All butons works but not the internal load.

image

And not using your drive. I am not able to set up the buttons.

image

PLease let me know if I can help you with other information.

Thanks