Any advice on using a D1 to control relays to press a remote button and integrate with existing z-wave contacts (that were working with the Myq lite integration). Planning on using Hubduino but wondering if there is an app to link those to the contacts.
Picked D1 and this remote because it's 3V (and the solder points leave no guessing).
Edit: looks like I have some options.
Final Edit: here is what I ended up with: Yet Another Garage Door Controller w/ Hubduino
Well, you can't use the stock virtual garage door driver. Here is one you have to use.
/**
* Virtual Garage Door
*
*/
metadata {
definition (name: "Virtual Garage Door", namespace: "ryan780", author: "ryan780") {
capability "Actuator"
capability "Contact Sensor"
capability "Garage Door Control"
capability "Switch"
command "confirmOpen"
command "confirmClosed"
}
}
def open() {
log.debug "open()"
on()
}
def close() {
log.debug โฆ
Garage Opener app for Hubitat
Make your garage door switch smart.
Features:
Works with a switch that starts or stops your garage door
Optionally detects when garage door is fully open with a contact sensor
Optionally detects when garage door is fully closed with a contact sensor
Detects if garage door is stuck half way though (when using contact sensors)
Can still use the switch to manually control the garage door, keeping the device state in sync
Requires a switch that starts and stops yoโฆ
1 Like