ZWave Lock Manager

Bollar
Posts: 528
Joined: Sun Aug 11, 2013 3:14 pm

ZWave Lock Manager

Post by Bollar »

Thanks again for this.

With just these initial functions, I quickly created Action Groups to add users to my new locks and I added a schedule to allow a contractor access during the day.
Insteon / Z-Wave / Bryant Evolution Connex /Tesla / Roomba / Elk M1 / SiteSage / Enphase Enlighten / NOAA Alerts
User avatar
durosity
Posts: 4810
Joined: Thu May 10, 2012 3:21 pm
Location: Newcastle Upon Tyne, Ye Ol' England.

Re: ZWave Lock Manager

Post by durosity »

Awesome! Sorry I wasn't able to finish testing with you, it's been a horrible week :(
Computer says no.
jalves
Posts: 783
Joined: Sun Jun 16, 2013 11:35 am

Re: ZWave Lock Manager

Post by jalves »

Thanks for creating this plugin! I'm about to buy a couple of z-wave locks and this looks to be very helpful in managing them.
Running Indigo 2024.2.1 on a 24" iMac M4), OS X 26.0
Jeff
User avatar
FlyingDiver
Posts: 7830
Joined: Sat Jun 07, 2014 10:36 am
Location: Southwest Florida, USA

Re: ZWave Lock Manager

Post by FlyingDiver »

Working fine with my Kwikset 910, so far.

Suggestion - change the deviceFilter in your Devices.xml (3 places) to:

Code: Select all

	<Action id="setUserPin" deviceFilter="indigo.relay,indigo.zwave">
No need to list relay devices that aren't Z-wave. Have to ask M&J whether there's a filter for just lock subtypes.
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
howartp
Posts: 4559
Joined: Thu Jan 09, 2014 4:43 pm
Location: West Yorkshire, UK

Re: ZWave Lock Manager

Post by howartp »

FlyingDiver wrote:Working fine with my Kwikset 910, so far.

Suggestion - change the deviceFilter in your Devices.xml
Ah, thanks - didn't realise I could combine filters.

I've already asked about filter for just locks - not available yet :)
User avatar
matt (support)
Site Admin
Posts: 21542
Joined: Mon Jan 27, 2003 1:17 pm
Location: Texas
Contact:

Re: ZWave Lock Manager

Post by matt (support) »

howartp wrote:
FlyingDiver wrote:Working fine with my Kwikset 910, so far.

Suggestion - change the deviceFilter in your Devices.xml
Ah, thanks - didn't realise I could combine filters.

I've already asked about filter for just locks - not available yet :)
I actually got it snuck into 7.0 but forgot to tell anyone :-) :

Code: Select all

for dev in indigo.devices.iter("indigo.relay, props.IsLockSubType"):
  print dev.name

# Or:

   <Action id="setUserPin" deviceFilter="indigo.relay,props.IsLockSubType">
Now that I think about it, technically you could leave off the indigo.relay specifier and just use props.IsLockSubType although I think I prefer that one specifies the main class type (relay in this case) too.
Image
User avatar
FlyingDiver
Posts: 7830
Joined: Sat Jun 07, 2014 10:36 am
Location: Southwest Florida, USA

Re: ZWave Lock Manager

Post by FlyingDiver »

Would

Code: Select all

 <Action id="setUserPin"  deviceFilter="indigo.relay,indigo.zwave,props.IsLockSubType">
Work?
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
User avatar
FlyingDiver
Posts: 7830
Joined: Sat Jun 07, 2014 10:36 am
Location: Southwest Florida, USA

Re: ZWave Lock Manager

Post by FlyingDiver »

FlyingDiver wrote:Would

Code: Select all

 <Action id="setUserPin"  deviceFilter="indigo.relay,indigo.zwave,props.IsLockSubType">
Work?
Just tested it. It works. With all three terms, I ONLY get the Z-wave door lock. Without the Z-wave term, I get the Z-Wave lock and my MyQ devices. Without the lock subtype, I get the Z-wave door lock and my water valves (my only other Z-wave relay type devices).

:)
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
User avatar
matt (support)
Site Admin
Posts: 21542
Joined: Mon Jan 27, 2003 1:17 pm
Location: Texas
Contact:

Re: ZWave Lock Manager

Post by matt (support) »

Yes, that would and you are correct that is what we want here since the functionality is Z-Wave specific. Note that logically the search is performed by AND'ing the categories (protocol, class, and props) and OR'ing the items within each category. For example, using a filter string of:

Code: Select all

indigo.insteon, indigo.x10, indigo.relay, indigo.dimmer, props.SupportsColor, props.SupportsWhiteTemperature
logically performs a search using:

Code: Select all

(insteon OR x10) AND (relay OR dimmer) AND (props["SupportsColor"] OR props["SupportsWhiteTemperature"])
Image
User avatar
FlyingDiver
Posts: 7830
Joined: Sat Jun 07, 2014 10:36 am
Location: Southwest Florida, USA

Re: ZWave Lock Manager

Post by FlyingDiver »

matt (support) wrote:Yes, that would and you are correct that is what we want here since the functionality is Z-Wave specific. Note that logically the search is performed by AND'ing the categories (protocol, class, and props) and OR'ing the property items within a category. For example, using a filter string of:

Code: Select all

indigo.insteon, indigo.x10, indigo.relay, indigo.dimmer, props.SupportsColor, props.SupportsWhiteTemperature
logically performs a search using:

Code: Select all

(insteon OR x10) AND (relay OR dimmer) AND (props["SupportsColor"] OR props["SupportsWhiteTemperature"])
And if you need more than that, create the list dynamically. ;)
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
howartp
Posts: 4559
Joined: Thu Jan 09, 2014 4:43 pm
Location: West Yorkshire, UK

Re: ZWave Lock Manager

Post by howartp »

matt (support) wrote: I actually got it snuck into 7.0 but forgot to tell anyone :-)
Don't suppose device.scenecontrollers exists yet...? ;-)

Can you do my subforum for lock manager?


Sent from my iPhone using Tapatalk
User avatar
matt (support)
Site Admin
Posts: 21542
Joined: Mon Jan 27, 2003 1:17 pm
Location: Texas
Contact:

Re: ZWave Lock Manager

Post by matt (support) »

howartp wrote:Don't suppose device.scenecontrollers exists yet...? ;-)
Not yet. :(
howartp wrote:Can you do my subforum for lock manager?
I had made it before your last post. Apparently I like making changes and not telling anymore. :twisted:
Image
howartp
Posts: 4559
Joined: Thu Jan 09, 2014 4:43 pm
Location: West Yorkshire, UK

Re: ZWave Lock Manager

Post by howartp »

:-)

Doesn't help that Tapatalk doesn't show empty subforums!


Sent from my iPhone using Tapatalk
howartp
Posts: 4559
Joined: Thu Jan 09, 2014 4:43 pm
Location: West Yorkshire, UK

Re: ZWave Lock Manager

Post by howartp »

FYI I just split this topic into 2, so my update announcements are in an Announcement thread that's locked.

You can reply here or in new threads depending what it relates to.

Peter
User avatar
durosity
Posts: 4810
Joined: Thu May 10, 2012 3:21 pm
Location: Newcastle Upon Tyne, Ye Ol' England.

Re: ZWave Lock Manager

Post by durosity »

howartp wrote::-)

Doesn't help that Tapatalk doesn't show empty subforums!


Sent from my iPhone using Tapatalk
Does actually :) there's a add a motor subforum for c4w which shows that's empty!
Computer says no.
Post Reply

Return to “ZWave Lock Manager”