Hello, I am having an issue with the new tags I just purchased not notifying when going out of range by the specified settings. I have the new tags on our keyrings to automatically arm and disarm other tags when going in and out of range. When I set the tag for example to 2 minutes and Immediately Notify, the tag system will not send a notification that the tag is out of range for 38 minutes, well passed the settings. I am not sure why I am starting to have this problem now when I have not been having problems like this with my tags.
Can you please help me with a resolution?
I'm not sure if your method of using a tag to activate other tags when going out of range is the best method
Personally I use the Kumo app on my iPhone when it's outside the proximity area to activate tags automatically
I like using the tags to arm and disarm my tags as it doesn’t rely on the location service of the phone and I have the kumo app to only arm the tags when two or more selected tags go out of range. When working it is a quick and reliable method to arm and disarm tags.
What I need is to have the setting within the tag System work as set, so when I set an out of range time it is at least close to this time rather than substantially out. This was working correctly until recently.
Can you please help tag support? Last time I had this issue it required you to change a setting on your end to fix it, there is nothing more I can do on my end. Ticket #8640
(The code to use your tags for arming)
var sensors = <#Tags Going Out Of Range_[12|13|52|72|21]_N#>;
var num_outofrange=0;
sensors.forEach(
function (sensor) {
if(sensor.outOfRange)num_outofrange++;
sensor.inRange=function(){num_outofrange--; }
sensor.outRange = function () {
num_outofrange++;
if(num_outofrange>=<%Number Of Tags Out Of Range To Arm_N%>)
<#Tags To Be Armed_[12|13|52|72|21]_N#>.forEach(
function(tag){
try{ tag.arm(<%1 to reset closed angle_N%>==1) }catch(e){KumoApp.Log(JSON.stringify(e)); }
}
);
};
});
--
You received this message because you are subscribed to the Google Groups "Wireless Sensor Tags" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wireless-sensor-...@googlegroups.com.
To post to this group, send email to wireless-s...@googlegroups.com.
Visit this group at https://groups.google.com/group/wireless-sensor-tags.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Wireless Sensor Tags" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wireless-sensor-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wireless-sensor-tags/8ba258e3-57b7-4b8e-a9ad-0262be6d8be0%40googlegroups.com.