antolope
(Antonio Lopez)
September 23, 2015, 1:25pm
385
Trip, have you connected the garage door with the device type from @garyd9 or @Ron ? @RBoy has a paid one floating around but not sure who well it works.
Try the one @garyd9 has here:
I’ve modified the ST default “Z-Wave Garage Door Opener” to better work with the “doors & locks” module. As far as I know, this would only be useful for the linear GD00Z device (and variants including the Iris opener.) This will allow you to select your garage door device as both the “open/close sensor” and the “garage door opener relay.” At that point, from within the “doors & locks” module, you can use “open and close it remotely” (and perhaps the other sub-modules that open/close the door.)
All this does is to add the “relay switch” and “momentary” capabilities to the type, stubs on()/off(), and defines push() to either open or close the door (depending on it’s current state.) It’s not a perfect implementation, as the “doors & locks” module might show the door as being “stopped” wh…
or try the one @Ron has here:
/**
* Z-Wave Garage Door Opener
* Z-Wave Garage Door Opener Modified for GD00Z by @Garyd, Copied and modifed by @Ron
*
* Copyright 2014 SmartThings
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
* for the specific language governing permissions and limitations under the License.
*
*/
metadata {
definition (name: "RG Linear GD00Z Garage Door Opener", namespace: "gouldner", author: "Ronald Gouldner") {
capability "Actuator"
capability "Door Control"
This file has been truncated. show original
You can follow the thread here:
Those were the features I would have added had I not been in the middle of a move/renovation - Nice all around!
Shout out and props to both of them for their great work!!!
If you have used one of these device types, the next step is to ensure you’re using the correct SmartApp. try this one:
You guys have obviously never seen the Ridiculously Automated Garage Door SmartApp
/**
* Ridiculously Automated Garage Door
*
* Author: SmartThings
* Date: 2013-03-10
*
* Monitors arrival and departure of car(s) and
*
* 1) opens door when car arrives,
* 2) closes door after car has departed (for N minutes),
* 3) opens door when car door motion is detected,
* 4) closes door when door was opened due to arrival and interior door is closed.
*/
definition(
name: "Ridiculously Automated Garage Door",
namespace: "smartthings",
author: "SmartThings",
description: "Monitors arrival and departure of car(s) and 1) opens door when car arrives, 2) closes door after car has departed (for N minutes), 3) opens door when car door motion is detecte…
Hope this helps.
1 Like