I have just installed this and I think I have everything setup as I should.
Both my account and doorbell are showing as online.
I have a rule that triggers when the “EventKind” item is updated, checks what the event was and logs it.
I’ve set it to turn on the porch light for testing purposes.
The problem is there is a good 30 second delay between the motion event and the rule triggering. Is this normal for this addon of have I configured something wrong?
rule "Ring Trigger"
when
Item EventKind received update
then
logInfo("User.RingVideo","Rule Triggered Event=" + EventKind.state)
if (EventKind.state == "on_demand") {
logInfo("User.RingVideo","Live View Detected")
} else if (EventKind.state == "motion"){
Porch.sendCommand("100")
logInfo("User.RingVideo","Motion Detected")
} else if (EventKind.state == "ding") {
logInfo("User.RingVideo","Ring Detected")
}
end