Page 1 of 1

Association Remove uses incorrect command class in Expert UI

Posted: 21 May 2015 08:56
by jensmoes
When trying to remove an existing association through the Expert UI it attempts to do this on CC 0x8E as this example:

Code: Select all

ZWaveAPI/Run/devices[7].instances[0].commandClasses[0x8e].Remove(1,8)
The above example was using a Aeon Labs Smart Energy switch which fails. I see the same when trying it on my Schlage BE-469 doorlock.
The command which works for me is:

Code: Select all

ZWaveAPI/Run/devices[7].instances[0].commandClasses[0x85].Remove(1,8)
I believe this is an error since none of my devices support the multi channel association CC 0x8e

This was tested on 2.0.1rc21

Re: Association Remove uses incorrect command class in Exper

Posted: 20 Jun 2015 23:12
by PoltoS
Thanks, it seems to be fixed now. Full Association part is reworked now.

Re: Association Remove uses incorrect command class in Exper

Posted: 21 Jun 2015 06:41
by jensmoes
Yes I tested and it works now. Thanks!