A small question for Z-Wave experts:
In Gladys 4, each feature of a device must have a category.
How can I categorize each feature in the Z-Wave protocol?
For example, for my Fibaro motion detector, here is an example of a comclass that I get:
"49": {
"1": {
"value_id": "10-49-1-1",
"node_id": 10,
"class_id": 49,
"type": "decimal",
"genre": "user",
"instance": 1,
"index": 1,
"label": "Temperature",
"units": "C",
"help": "",
"read_only": true,
"write_only": false,
"min": 0,
"max": 0,
"is_polled": false,
"value": "27.1"
},
"3": {
"value_id": "10-49-1-3",
"node_id": 10,
"class_id": 49,
"type": "decimal",
"genre": "user",
"instance": 1,
"index": 3,
"label": "Luminance",
"units": "lux",
"help": "",
"read_only": true,
"write_only": false,
"min": 0,
"max": 0,
"is_polled": false,
"value": "105"
},
"25": {
"value_id": "10-49-1-25",
"node_id": 10,
"class_id": 49,
"type": "decimal",
"genre": "user",
"instance": 1,
"index": 25,
"label": "Seismic Intensity",
"units": "",
"help": "",
"read_only": true,
"write_only": false,
"min": 0,
"max": 0,
"is_polled": false,
"value": "0.0"
}
},
How can I identify these three features (temperature, light sensor, and seismic sensor)?
The label? I have the impression that the label is more user information, right?
Can the combo comclass (49 here) + index (1, 3, and 25) work? Or are these numbers specific to my installation?
Does this mean that we need to create a database of all Z-Wave devices to map them?
I will continue my research, but if you have more information, I am interested…