The following instructions are for Vera's UI7 interface. The 1.x version of the plugfest does not support older versions of the interface.
The following instructions are for Vera's UI5 interface. The plugin currently does not support previous versions of the interface.
The following settings are also required and recommended for your MIMOlite.
The door icon will indicate if the garage door is open or closed.
Garage Door is closed
Garage Door is open
To open or close the door, click the "Open/Close" button one time. Note, it may take a few moments for the door to open or close and the sensor to update the state of the icon. Do not rapidly click the button multiple times.
I use a scene in our vera, which runs automatically every night at 10:40, to check the garage doors, and close them if necessary. The scene also turns off the garage lights, etc. The key to this scene is the Luup code, because the script should only send the "close command" if the door is actually open. This example is for two doors. I've found the delay is necessary to allow the transmit to the first door to finish completely before trying to close the second (reduces glitches).
-- Note, the door contacts are wired as "closed circuit" if the door is closed in this script" -- Close door #1, if it's open local lul_temp = luup.variable_get("urn:micasaverde-com:serviceId:SecuritySensor1","Tripped", 43) or "0"if (lul_temp == "1") then luup.log("Garage door #1 open, trying to close now...") luup.call_action("urn:upnp-org:serviceId:SwitchPower1","SetTarget",{ newTargetValue="1" }, 43) else luup.log("Garage door #1 already closed, nothing to do here.") end -- Small delay to let the first transmit occur luup.sleep(700) -- Close door #2, if it's open local lul_temp = luup.variable_get("urn:micasaverde-com:serviceId:SecuritySensor1","Tripped", 61) or "0" if (lul_temp == "1") then luup.log("Garage door #2 open, trying to close now...") luup.call_action("urn:upnp-org:serviceId:SwitchPower1","SetTarget",{ newTargetValue="1" }, 61)else luup.log("Garage door #2 already closed, nothing to do here.")end The MIMOlite Garage Door Plugin MUST only be installed on garage door openers that comply with the latest building and safety requirements, including, but not limited to, door openers with automatic reversing mechanisms and obstruction sensors. Use of this plugin, related files, programs, code, etc on any garage door opener that does not include these features will create a serious safety hazard. By using the plugin, related files, programs, etc, you hereby agree to accept all responsibility for the safe operation of the garage door and property where the module is install and hold harmless the authors of the plugin against any damages caused by the direct and indirect use of the plugin.
For additional information about the safety requirements of garage door opener systems, please refer to the Consumer Product Saftey Commission website.