I am trying to change the autolock attribute on my Nimly lock but I can't get it to work.
(Door lock cluster 0x0101, attribute 0x0023)
I can read the attribute with
def cmd = [
"he rattr 0x${device.deviceNetworkId} 0x${device.endpointId} 0x0101 0x0023{}",
]
But i can't figure out how to change it. I have tried:
def cmd = [
"he wattr 0x${device.deviceNetworkId} 0x${device.endpointId} 0x0101 0x0023 0x01{}",
]
Am I doing it wrong?