ZWave Lock Manager
ZWave Lock Manager
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.
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
- durosity
- Posts: 4810
- Joined: Thu May 10, 2012 3:21 pm
- Location: Newcastle Upon Tyne, Ye Ol' England.
Re: ZWave Lock Manager
Awesome! Sorry I wasn't able to finish testing with you, it's been a horrible week 
Computer says no.
Re: ZWave Lock Manager
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
Jeff
- FlyingDiver
- Posts: 7830
- Joined: Sat Jun 07, 2014 10:36 am
- Location: Southwest Florida, USA
Re: ZWave Lock Manager
Working fine with my Kwikset 910, so far.
Suggestion - change the deviceFilter in your Devices.xml (3 places) to:
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.
Suggestion - change the deviceFilter in your Devices.xml (3 places) to:
Code: Select all
<Action id="setUserPin" deviceFilter="indigo.relay,indigo.zwave">
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
Re: ZWave Lock Manager
Ah, thanks - didn't realise I could combine filters.FlyingDiver wrote:Working fine with my Kwikset 910, so far.
Suggestion - change the deviceFilter in your Devices.xml
I've already asked about filter for just locks - not available yet
- matt (support)
- Site Admin
- Posts: 21542
- Joined: Mon Jan 27, 2003 1:17 pm
- Location: Texas
- Contact:
Re: ZWave Lock Manager
I actually got it snuck into 7.0 but forgot to tell anyonehowartp wrote:Ah, thanks - didn't realise I could combine filters.FlyingDiver wrote:Working fine with my Kwikset 910, so far.
Suggestion - change the deviceFilter in your Devices.xml
I've already asked about filter for just locks - not available yet
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">- FlyingDiver
- Posts: 7830
- Joined: Sat Jun 07, 2014 10:36 am
- Location: Southwest Florida, USA
Re: ZWave Lock Manager
Would
Work?
Code: Select all
<Action id="setUserPin" deviceFilter="indigo.relay,indigo.zwave,props.IsLockSubType">joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
- FlyingDiver
- Posts: 7830
- Joined: Sat Jun 07, 2014 10:36 am
- Location: Southwest Florida, USA
Re: ZWave Lock Manager
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).FlyingDiver wrote:Would
Work?Code: Select all
<Action id="setUserPin" deviceFilter="indigo.relay,indigo.zwave,props.IsLockSubType">
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
- matt (support)
- Site Admin
- Posts: 21542
- Joined: Mon Jan 27, 2003 1:17 pm
- Location: Texas
- Contact:
Re: ZWave Lock Manager
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:
logically performs a search using:
Code: Select all
indigo.insteon, indigo.x10, indigo.relay, indigo.dimmer, props.SupportsColor, props.SupportsWhiteTemperatureCode: Select all
(insteon OR x10) AND (relay OR dimmer) AND (props["SupportsColor"] OR props["SupportsWhiteTemperature"])- FlyingDiver
- Posts: 7830
- Joined: Sat Jun 07, 2014 10:36 am
- Location: Southwest Florida, USA
Re: ZWave Lock Manager
And if you need more than that, create the list dynamically.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:
logically performs a search using:Code: Select all
indigo.insteon, indigo.x10, indigo.relay, indigo.dimmer, props.SupportsColor, props.SupportsWhiteTemperature
Code: Select all
(insteon OR x10) AND (relay OR dimmer) AND (props["SupportsColor"] OR props["SupportsWhiteTemperature"])
joe (aka FlyingDiver)
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
my plugins: http://forums.indigodomo.com/viewforum.php?f=177
Re: ZWave Lock Manager
Don't suppose device.scenecontrollers exists yet...?matt (support) wrote: I actually got it snuck into 7.0 but forgot to tell anyone![]()
Can you do my subforum for lock manager?
Sent from my iPhone using Tapatalk
- matt (support)
- Site Admin
- Posts: 21542
- Joined: Mon Jan 27, 2003 1:17 pm
- Location: Texas
- Contact:
Re: ZWave Lock Manager
Not yet.howartp wrote:Don't suppose device.scenecontrollers exists yet...?
I had made it before your last post. Apparently I like making changes and not telling anymore.howartp wrote:Can you do my subforum for lock manager?
Re: ZWave Lock Manager
Doesn't help that Tapatalk doesn't show empty subforums!
Sent from my iPhone using Tapatalk
Re: ZWave Lock Manager
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
You can reply here or in new threads depending what it relates to.
Peter
- durosity
- Posts: 4810
- Joined: Thu May 10, 2012 3:21 pm
- Location: Newcastle Upon Tyne, Ye Ol' England.
Re: ZWave Lock Manager
Does actuallyhowartp wrote:
Doesn't help that Tapatalk doesn't show empty subforums!
Sent from my iPhone using Tapatalk
Computer says no.
