In node red at runtime how can I retrieve parameters from zwavejs2mqtt? I know I can set them with bulk_set_partial_config_parameters. I tried posting on node red forum but haven’t gotten a response.
I dont think there is a way to get config values currently through Home Assistant. However, you can do it with mqtt:
topic: (may vary based on your setup)
zwavejs/_CLIENTS/ZWAVE_GATEWAY-zwavejs2mqtt/api/pollValue/set
payload:
{
"args": [
{
"nodeId": 49,
"commandClass": 112,
"endpoint": 0,
"property": 13
}
]
}
or
{
"args": [
{
"nodeId": 49,
"commandClass": "Configuration",
"endpoint": 0,
"property": 13
}
]
}
1 Like
I haven’t gone down the mqtt rabbit hole yet. I’ll look into it.