Zooz Device Associations

There’s a version of Basic Z-Wave Tool that supports association from @MrFarmer. It is available here:

1 Like

And not in HPM. I'm always surprised by that :smiley:

1 Like

@csteele : Many thanks.

I installed the app using HPM and set up an association between 2 ZEN 71's using group 2. Unfortunately I got the following error:

2023-07-13 03:40:58.630 PMerrorjava.lang.IllegalArgumentException: Command 'setAssociationGroup' is not supported by device 73. on line 71 (method updated)

Is this saying it expects to find the setAssociationGroup command in the driver? I am using @jtp10181 's driver and that sets the association in the preferences rather than as a command.

Oops replies crossed! I'll try the one from @MrFarmer.

Unfortunately a similar result using the "Basic Z-Wave Association Tool". It throws the following error:

java.lang.ArrayIndexOutOfBoundsException: -1 on line 216 (method addAssociation)

As this is the device driver code it suggests the Zooz firmware doesn't support the "standard" way of accessing the device associations but @jtp10181 managed it somehow in his driver. Suspect I just have learn a lot more about Z-Wave and read his driver!

I am very confused about what has transpired here thus far.

If you use my Zooz switch/dimmer driver, all the association groups can be set right from the device page.

My driver does not support the Inovelli association tool, as you found it requires a special function within the driver.

What are you trying to do exactly and what is the problem?

You should have this on the device page if using my driver:

I'm not. :slight_smile: I have a bunch of things not in HPM (and some not in github too) as it takes extra steps to do so, and I have limited time/sometimes forget to do them. :man_shrugging:

1 Like

I'm surprised by you too then :smiley:

You've always seemed like an "infinite time" kinda guy. LOL :smiley:

1 Like

@jtp10181 : Yes, your drivers allow me to set the associations and they work fine - thank you. However not all the Zooz drivers do support associations (ZEN 04/32/40/43/44 at least) and I don't think you have written drivers for them? So I was looking for a way to set the associations for those devices. I have your code in front of me now & am trying to work out how it's done but this is my first time with a Z-Wave driver!

Well my issue is laziness. I never remember HOW to generate the XML, and haven't made myself a cheat sheet.

I remember it being easy, but I never remember how to do it without re-reading the github page. lol

90% of the time I plagiarize myself :slight_smile: I copy/paste a new block/paragraph, then grab a fresh new UUID and paste on top of the old one. After that's more about spelling the package name correctly :smiley:

In other words, my cheat sheet is any previous json I can access. :slight_smile:

1 Like

I have a driver for ZEN04, ZSE40 and ZSE44
I did not include the code to set associations on these because it seemed like an extreme edge case that anyone would ever need to do anything with them on HE, since you can much more easily write and maintain a rule to do the same things.

What are you trying to do exactly? Chances are it can be done much more easily with a hub rule.

The only one that might be sort of useful is the ZEN32 if you want to use it for dimming, which can be done as a hub rule but may work better with the association (possibly).


This crude driver I ported over from ST (below) can also set associations on any device/group. If you follow the instructions in the second post it shows how to set multi-channel associations, and regular associations are set the same way just without the :# extra digit at the end.

[BETA] ZWave Tweaker port from ST

Setting the battery devices will be tricky because you have to time it with a wakeup. The driver does not have built in support to work easily with a battery device.

@jtp10181 : I prefer to use associations when "people" are involved, eg someone opens a door and they expect the light to come on in less than one second. At about one second people start looking for the switch. Occasionally I see delays of up to 10 seconds between the door opening and the rule responding - way too long. I expect this is down to something hogging the hub processor time and I will track it down. However I can insulate my system against such failures by using associations on time critical actions.

PS: Many thanks for the link I will see if I can get it working tomorrow.

I have multiple rules using motion and contact sensors. The speed at which the lights turn on is solely dependent on how fast the sensor reacts. My contact sensor for the basement lights, the light will be on before you even step through the door. This is using a ZSE41 with a hub rule.

Sounds like you have Z-wave mesh issues if its that slow.

1 Like

It’s not always that long and the delay appears randomly on most devices, Z-Wave and WiFi so I think it’s the hub CPU.

Maybe if you have a bunch of terrible things going on with your hub, or a LOT of Wifi/IP devices with heavy integrations.

1 Like

I managed to catch the logs of fast & slow switching event. The event is a Z-Wave door sensor opening which turns on a Kasa WiFi bulb.

dev:1202023-07-19 03:08:48.903 PMinfo1 - Rear Hall - Closet Light-2.3.5-1: setSysinfo: [status: [on_off:1, mode:normal, brightness:100, hue:0, saturation:0, color_temp:2700, err_code:0]]
dev:1192023-07-19 03:08:43.271 PMinfo1 - Rear Hall - Closet Sensor is open

dev:1202023-07-19 01:43:07.264 PMinfo1 - Rear Hall - Closet Light-2.3.5-1: setSysinfo: [status: [on_off:1, mode:normal, brightness:100, hue:0, saturation:0, color_temp:2700, err_code:0]]
dev:1192023-07-19 01:43:07.067 PMinfo1 - Rear Hall - Closet Sensor is open

In the bottom log (first in time) the Kasa driver responds 200msec after the Z-Wave device registers the event but in the top log it takes 5.6secs for the Kasa Driver to respond. One might argue that this is a problem with the Kasa driver that just happen when it was processing something else. However I have seen similar behavior on other rules using Z-Wave to Z-Wave events.

So my guess is something is hogging the processor but I think device to device associations only need the Z-Wave radio chip and do not reach the main processor?

They dont even need the hub, direct associations can work without the hub.
But, in this case both devices are not zwave so a hub rule is the only way.

I think to fully understand it you would need to enable more logging on the Kasa app/devices. Its not clear if the Kasa device was told to turn on right away and was slow to respond, or was there a delay in the hub telling it to turn on?

You could also enable logging on the rule(s) which will tell you when and how quickly the rule is doing its part.

Also, screenshots of logs are much easier to read than copy/paste text.

2 Likes

@jtp10181 : I fear direct associations only work effectively on Zooz devices when the hub is present. According to Zooz they send the Group 1 associations first and will not send the Group 2 associations until the hub has either responded or timed out. For my hub that timeout is typically 8 seconds.

I will do some more testing on this issue but it appears randomly across all devices and is not restricted to just the Kasa devices.