-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
groups and associations methods not working or incorrectly documented #260
Comments
Hi, |
@blackshadev thanks for the reply. So it seems the addAssociation depends on the source node to have a result from But I have never seen any of my 50 devices return a value other than zero for getNumGroups, including the host (Aeotec Z-stick) and a number of GE Z-Wave, Z-Wave plus devices. Is there any other initialization required to get this function to work? Thank you again for the reply. |
The Aeontec Z-stick doesn't have any association groups on it, I know that because I have one as well. After reading into this, the Fibaro manual stated that the 2nd and 3rd association groups can be used to trigger other devices , like you wanted, so this is a valid use case. However it also stated that the data send along with these association groups are based on the Basic command class and send out an "on/off" command, so the device does need to support that. Since your devices don't return any association groups I think they are designed the other way around: They can receive on/off commands from the basic command class over association groups, but they do not sent our these association groups. If that doesn't work the problem is in the config file of the device in the "device database" which are just a bunch of XML files provided with the library. Unfortunately I really don't have allot of experience with the device database, but luckily I know a place where there are loads of people that do: The OpenZWave github page. You see this repo is just a wrapper arround a much bigger cpp project called OpenZWave, they will definitely know what to do with it. Do mind, when posting issues over there they really appreciate to have the following information: The product name and maybe even a link to the manual and if you have it a part of the OZW_log.txt if you find anything related to that node and it's association group. |
Thanks again for the reply. I have an Aeotec Wallmote that I bought to try to get these associations to work--the idea being that it could trigger a number of other zwave devices. I know that supports groups, so I'll try that tonight to see if I can get a non-zero response from |
Hi again, Wauw those things are beatifull, If I ever need a Zwave enable wall switch /dimmer I will surely get one of these. |
Hi all,
Thanks again for the efforts on this library. I'm having an issue that has been haunting me for a couple days now that I would appreciate some help with.
I'm trying to associate one device (switch A, Node018) with another one (switch B, Node017) such that turning on Switch A will turn on switch B. This is being done with groups, and my devices (both switches) are documented to support them.
There are no existing groups in Switch A, as calling this:
Creating a group association like such:
... followed by getting the groups as above yields an empty array.
Where am I going wrong? I have to believe that this feature is in use by others.
The text was updated successfully, but these errors were encountered: