qt-openzwave icon indicating copy to clipboard operation
qt-openzwave copied to clipboard

Ability to query list of associations for a given node

Open m3ki opened this issue 5 years ago • 0 comments

Currently, we have the ability to query each node individually for each group:

OpenZWave/1/node/38/association/2/

For which I get

{
    "Name": "Basic_Set",
    "Help": "",
    "MaxAssociations": 5,
    "Members": [
        "36.0",
        "37.0"
    ],
    "TimeStamp": 1604267957
}

I would like to have an ability to get a result like this OpenZWave/1/node/38/associations For which I get

{
	"Name": "All associations",
	"Groups": {
		"1": [
			"36.0",
			"37.0"
		],
		"2": [
			"36.0",
			"37.0"
		]
	},
	"TimeStamp": 1604267957
}

m3ki avatar Nov 03 '20 15:11 m3ki