I have an IDLock 101 which is set up securely and working as expected.
In the set config params, it is possible to set a config that locks the door automatically when the door closes. I’m able to set this parameter manually using the zwave settings in HASS, but if I try firing the zwave.set_config_parameter, nothing happens.
I want this function enabled after 19:00:00.
So, can anyone see why this zwave.set_config_parameter action doesn’t work?
alias: "Autolock on"
trigger:
platform: time
at: '19:00:00'
action:
service: zwave.set_config_parameter
data_template: {
"node_id": 10,
"parameter": 1,
"size": 1,
"value": 1
}
Here’s what the manual says:
Door Lock Mode(s):
Autolock Mode, Manuallock mode, Activate Away Mode, Deactivate Away Mode
Default Value : 1 ( Disable Away / Auto Lock Mode )
Name | Parameter Number | Size | Value | Description |
---|---|---|---|---|
Door Lock Mode | 1 | 1 | 0 | Disable Away Manual Lock |
1 | 1 | 1 | Disable Away Auto Lock | |
1 | 1 | 2 | Enable Away Manual Lock | |
1 | 1 | 3 | Enable Away Auto Lock |