Auto Re-lock issue.

Posted on
Thu Dec 17, 2020 11:28 pm
arskrett offline
Posts: 20
Joined: Jul 22, 2011

Auto Re-lock issue.

I can not for the life of me get plugin to adjust the auto re-lock timer for my Shlage lock (BE369/468/469).

I make a trigger that set the new time to re-lock ( 250 sec) and I see in log that it sends some raw commands. but it never changes..

any idea?

Posted on
Wed Apr 14, 2021 2:44 pm
dscottbuch offline
Posts: 90
Joined: Jan 19, 2004

Re: Auto Re-lock issue.

I had the same issue with my Yale lock. I looked at the python code and the debugging and saw that the checkbox indicating whether you wanted to lock/unlock was not being read and that the setRelock function was ALWAYS calling relockON as false and so always turning off auto relock.

Following the setRelock code I could use the Indigo 'Send Raw Z-Wave Command' to send the following two commands, in sequence, to the lock and it would set Autolock to on with an appropriate time.

Relock 120
0x70 0x04 0x02 0x01 0xFF
0x70 0x04 0x03 0x01 0x78

the 0x78 is 120 seconds as that's what I wanted. Just change the )x78 to appropriate number of seconds, in hex, and this might work.

If your into scripting the following python might work in your own action with nsec the number of second in base 10, and devID the ID number of your lock

codeStr = [112, 04, 02, 01, 255]
indigo.zwave.sendRaw(device= indigo.devices[devID] ,cmdBytes=codeStr,sendMode=1)
#indigo.server.log("Sending raw command: [" + convertListToStr(codeStr) + "] to device " + str(indigoDev))
codeStr = [112, 04, 03, 01, nsec]
indigo.zwave.sendRaw(device= indigo.devices[devID],cmdBytes=codeStr,sendMode=1)

Posted on
Thu Apr 15, 2021 12:32 am
howartp offline
Posts: 4559
Joined: Jan 09, 2014
Location: West Yorkshire, UK

Re: Auto Re-lock issue.

Apologies, I’ll have a look at this.

Perer


Sent from my iPhone using Tapatalk Pro

Posted on
Thu Apr 15, 2021 5:42 pm
agame offline
Posts: 514
Joined: Jul 13, 2017
Location: Melbourne, Australia

Re: Auto Re-lock issue.

just FYI having similar issues with the KAS locks configuring auto relock, I'd assumed it was another zwave version issue with these locks. I'm ok just to disable the feature.

Posted on
Sun Apr 18, 2021 3:14 pm
howartp offline
Posts: 4559
Joined: Jan 09, 2014
Location: West Yorkshire, UK

Re: Auto Re-lock issue.

v1.0.63 is now live with this fix.

It was checking for "On" in the code, but it was saved as "on" in the config so the check didn't match.

Peter

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 2 guests