I have been using the Kumo app shown below to notify me when a door has been left open for >5 minutes:
var timer={};
var target = <#door or window_[12|53]_N#>;
target.forEach(function(t){
t.opened=function(){
timer[t.uuid]=KumoApp.setInterval(function(){
<~devices to send notification~>.push(
t.name + " remains open");
},<%interval in minute_N%>*1000*60);
};
t.closed=function(){
KumoApp.stopTimer(timer[t.uuid]);
};
});
However the app continues to report that the door is open even AFTER I have received a notice via the
Wireless Tag App that the door is closed. The only way to stop this report is to stop the Kumo app from running or remove the Kumo app all together. I would be interested in learning if anyone else has observed similar results.
Thanks!