Update: I'm getting false alerts. This motion sensor is not going to work unless I can find a way to alert only after 2-3 seconds of motion.
Finally got the wireless walnut size Iris-Motion-Sensor to work with SmartThings and BlueIris
The Motion Sensor triggers my porch camera by triggering the BI WEB interface which also rings a doorbell sound.
Hopefully this will cut down on all the false motion alerts when using BI motion detection.
here's the Groovy code snippit to add a SmartThings SmartApp.
(change CAPS below for you site info)
def params = [
uri: "http://USER:PASSWORD@MYBIWEBSITE.COM",
path: "/admin?camera=PorchAlert&trigger"
]
try {
httpGet(params) { resp ->
resp.headers.each {
//log.debug "results: ${it.name} : ${it.value}"
}
}
} catch (e) {
log.error "something went wrong: $e"
}
Finally got the wireless walnut size Iris-Motion-Sensor to work with SmartThings and BlueIris
The Motion Sensor triggers my porch camera by triggering the BI WEB interface which also rings a doorbell sound.
Hopefully this will cut down on all the false motion alerts when using BI motion detection.
here's the Groovy code snippit to add a SmartThings SmartApp.
(change CAPS below for you site info)
def params = [
uri: "http://USER:PASSWORD@MYBIWEBSITE.COM",
path: "/admin?camera=PorchAlert&trigger"
]
try {
httpGet(params) { resp ->
resp.headers.each {
//log.debug "results: ${it.name} : ${it.value}"
}
}
} catch (e) {
log.error "something went wrong: $e"
}
Last edited: