Uh, stacking plugins on top of each other and creating a bunch of unnecessary extra devices? :-(
That sounds like I'll end up with 9 fake devices ( I have 3 garage doors) and then three emulated locks on top, so 12 cards cluttering up the Vera for 3 doors.
I really liked the idea of the quick and simple and very well functioning plugin I have, only that AutHomation HD is not showing the status is a bit of a bummer.
How can we coerce the lock emulation plugin to pull the status info directly from the device like the Fortrezz plugin does? At least then I would end up with 6 devices.
3 emulated locks and the three left-over "main" devices which I still need to hide somehow.
Again Fortrezz doesn't make a plugin.
Your installing the MIMOlite plugin as it brings the capabilities into Vera. Then your using the garage door app to put those to use.
If you want to hide everything you can. In Authomation just hold it down and hit the eye. Very easy and I use that for all my virtual switches and other behind the scenes stuff. If you want to hid them on the vera UI page you can click apps, then develop apps, then hit edit start up, then type in luup.attr_set("invisible","1",XX) with the XX being the device number you want to hide. You can create multiple lines to hid all of them. Here is my example below with devices 89,90, 114, 115, 181 and 182. Hit go then reload and they will be hidden. Delete this to show them again.
luup.attr_set("invisible","1",89)
luup.attr_set("invisible","1",90)
luup.attr_set("invisible","1",114)
luup.attr_set("invisible","1",115)
luup.attr_set("invisible","1",181)
luup.attr_set("invisible","1",182)