SQ Remote and Door Locks

This morning when I woke, I came across a post (somewhere) about door locks and PIN codes. Try as much as I can, I cant find out where this post is, so I am posting here in the hope that the original poster sees this. (Does that sentence make sense?)

We raised the question of PIN codes with MCV during the beta testing as this was a question that was brought up. Currently there is no way that SQ Remote (with its current form of communication with Vera) can pass PIN codes through Vera to a Lock to lock or unlock it. My understanding (and I might be very wrong here) is that Vera allows you to set PIN’s but the use of the PIN is only available “at the door”.

We think that a PIN entry system within SQ Remote is a good idea, but we are not able to implement this at this point. So we STRONGLY recommend that anyone with door lock controls that uses SQ Remote to set the “Passcode Lock” (Settings > General) on their iPhone or iPod touch and to treat their device with the same care as another door key!

John
Square Connect

Hi John,

You’re not wrong at all. The use of the pin codes can be accomplished only from the physical door lock. You can set/remove codes with no problem using the UI, but you cannot unlock the door from Vera using a pin code, you just press “Lock/Unlock”.

John,

I believe you are referring to my post on the square connect forum. I was actually looking for the capability to remotely create temporary PINS for the Schlage door lock. In other words, from the office I could potentially create a temporary PIN for the cleaning people and then remove it at a later time. The smartphone plugin allows this level of control through the iPhone, etc… It would be nice to have this same capability with SQ Remote.

I like the ability to temporarily create the pin for the door… I would also like to see the ability to set a pin for the door lock control on SQ remote…

Mat, one could probably do what you want using scenes - one for every number 0-9, and place them on a c-pad laid out like a number pad. Using luup in the background, you could keep track of the correct keypress sequence.

Not pretty, but should be doable. Of course it means pin validation would be done on Vera which would in turn send an unlock command.

Oooo I like to ingenuity of that… And the fact we can implement without with a new release of sq remote - anybody up for developing the lua scripts?

I can when I get the time… you can set up all scenes the same… with the exception of the number they represent… without really thinking about it, the scenes might work like this for a 4-digit code…

If pincode < 1000 then pincode * 10 + [scene number]
if pincode = [unlockcode] then unlock door
If pincode > 999 then pincode = 0