Hello, I would like to see please if I have the following Kumo app correct for disarming. I have used this Kumo app in the past however for some reason now the app preforms very strange when trying to disarm. When I use this app my tags and WeMo's will cycle with a disarming and arming again and so forth. Last time I tried this Kumo app it cycled for about 10 minuets with tags arming and disarming and WeMo's turning on and off. When I begins to cycle I can't stop it, I just have to wait for it to stop. After it finished only a few were disarmed, like it timed out and just stopped where ever it was at that moment. I have a different Kumo app fort Arming and it works fine still.
<#Sensor tags to disarm_[12|13|52|72|21]_N#>.forEach(
function(tag){
try{ tag.disarm() }catch(e){KumoApp.Log(JSON.stringify(e)); }
<#WeMo switches_[82]_N#>.forEach(function(s){s.lightOff();});
}
);