zwave.associationV1.associationSet and Get not working

Hi
Working on a DTH trying to setup associations between z-wave devices
I can’t seem to set or get the association information, I have tried multiple methods, these being the simplest.
The get command won’t give any info for groupingIdentifiers other than 1
Am I screwing something up ?

def setAssociation() {
log.debug "Set Association send to $zwaveHubNodeId"
delayBetween([ zwave.associationV1.associationSet(groupingIdentifier: 2, nodeId: 1 ).format(),
zwave.associationV1.associationSet(groupingIdentifier: 3, nodeId: 1 ).format()
], 1000)
}

def getAssociationReport(){
log.debug "Get Associations"
delayBetween([ zwave.associationV1.associationGet(groupingIdentifier: 2 ).format(),
zwave.associationV1.associationGet(groupingIdentifier: 3 ).format()
], 1500)
}

The logs for these two procedures:

dev:1922021-02-02 09:52:15.651 pm AssociationReport- groupingIdentifier:1, maxNodesSupported:5, nodes:[1]
dev:1922021-02-02 09:52:14.228 pm AssociationReport- groupingIdentifier:1, maxNodesSupported:5, nodes:[1]

The Basic Z-Wave tool also seems to incorrectly report the associations.
Maybe I'm not setting the associations ??
Trying to associate device to hub on group 2 and 3

Any help appreciated

David

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.