//===========================================================================================
// Only available on Cordova version as PWA app not allowed access to SMS functions
// 09/06/22 - v2 Adds a new slide for direct control of tracker app
//===========================================================================================
var tracker = "+447368979373";
function AlarmOff(){
SendSMS( tracker, "Alarm Off")
}
function AlarmOff(){
SendSMS( tracker, "Alarm On")
}
function sendSMS( sendto , textmsg ) {
Log("Sending text to "+sendto+" :-\n'"+textmsg);
if(sendto.indexOf(";") >=0) {
sendto = sendto.split(";");
for(var i in sendto) {
sendto[i] = sendto[i].trim();
}
}
if(SMS) SMS.sendSMS(sendto, textmsg, function(){}, function(str){alert(str);});
}