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]