Schlage Z-Wave Connect Century (BE469) One Touch Setting


#1

1) Give a description of the problem
I am trying to obtain some additional information regarding the capability of WebCoRE to control some of the settings of the Schlage Z-Wave Connect Century (BE469). Anyone not familiar with the lock, it has a setting called Lock and Leave where hitting the Schalge button on the outside locks the door. Very quick and easy way to lock the door when leaving which does not require the pass code to be inputted to lock the door.

I am trying to have WebCore control this setting. The following command appears in WebCore: setLockLeave. I have tried taking the values which appear in the IDE for the set lockleave setting (off_lockLeave and on_lockLeave) as an integer to automate this process but it does not seem to work.

2) What is the expected behavior?
Example: Having a guest code inputted turns on a virtual presence sensor for the home and disables lock and leave so that when the guest leaves they have to input the code again (Not simply hit the Schlage button on outside) to lock the door. The code being input again by the guest would turn off guest mode and re-enable lock and leave setting. As a daily user I like the one touch lock settings, but I want that to automatically be disabled if a guest code is entered.

3) What is happening/not happening?
The code is turning the virtual guest presence sensor on and off appropriately, but there is no change to the Lock Leave setting (Disabled and re-enabling).

**4) Post a Green Snapshot of the piston![image|45x37]


#2

I really like your idea for tracking if a guest is present. What device handler are you using? I have the RBoy ‘Universal Z-Wave Lock With Alarms’. With that DH, the commands are ‘enableOneTouchLock’ and ‘disableOneTouchLock’. I have never tried them but assume they work.


#3

It was the best idea I could think of that does not require the guest to actively carry any device on them or have them install anything on their phone. They will be required to unlock and lock the door though, which would be awesome to have trigger guest present/not present.

I think I am using Ethayer’s device handler. I switch between this one and the default handler often.

I have seen many posts about RBoy’s DH and I am not opposed to purchasing that; however, the only function I am struggling with is this automatic disabling and re-enabling of the one touch setting. I would prefer not to purchase his DH just for that.

Out of curiosity though, can you test that function to determine if it works with RBoy’s DH?


#4

I did a simple test just executing each command and it did work. Then for kicks I created the piston below and this worked fine as the logs indicate (and I checked after each execution). Note I had to add the extra if at the bottom just to keep the condition from being a trigger which sent it into an infinite loop :exploding_head:


#5

You have an empty if statement at the end of the piston. That may not be a problem since this is a test piston. :slight_smile:


#6

Yes, it was on purpose. Because I only had one condition statement, it became a trigger and it kept looping back enabling and disabling the capability when I tried to test it. By adding this blank if, it became the only trigger and the first if worked as desired. Kludge, but it worked for test purposes.