https://www.onx.ms/
Looks like an real easy and nice for Tasker on Android. Hope to configure the same settings ASAP. ("on WiFi connection set device value "Freek at home" at Yes" by example").
Microsoft's ON{X}
Re: Microsoft's ON{X}
Oops,
You need a facebook account to login..
This would be a 'throw-away' app for me.
You need a facebook account to login..

This would be a 'throw-away' app for me.
Bram
Re: Microsoft's ON{X}
I gave it a try and created 3 rules in less than 10 minutes:
- my wife can text me to get my current location;
- I am reminded to wear my tie when I arrive at work;
- a SMS is sent @ home when I leave work.
Just a few simple tests. The first one works OK, the rest I don't know yet
The need for Facebook authentication sucks and is one of the hottest topics on the on{x} forum, this is what the onx team writes about it on their blog:
- my wife can text me to get my current location;
- I am reminded to wear my tie when I arrive at work;
- a SMS is sent @ home when I leave work.
Just a few simple tests. The first one works OK, the rest I don't know yet

The need for Facebook authentication sucks and is one of the hottest topics on the on{x} forum, this is what the onx team writes about it on their blog:
However... to reply to the question in the quote above, you need to login with a Facebook account....Many people have raised questions regarding the need for authentication.
We hear you!
The reason we require authentication is to ensure privacy and make sure that only you can push code to your device.
In our first beta version, we’ve decided to use Facebook ID. We never post anything to Facebook, we just use it for authentication!
We plan to support additional authentication methods in the near future.
It would be great to get your input: which additional authentication method would you like to see?

Re: Microsoft's ON{X}
I have tasker, which can do a lot on your droid. It's not a free app, but i'm very happy with it.
Re: Microsoft's ON{X}
The result was not what I expected: the reminder came 5 minutes after I arrived, while the radius for the location 'work' was set to 1000 meters.- I am reminded to wear my tie when I arrive at work;
Too late...
Re: Microsoft's ON{X}
Hi ppl,
I implemented on{x} into my system using the rules below which just call an URL in the case of an event on the phone.
Things which I have done with it:
1) When connecting to my WIFI at home and the phone hasn't been seen for a time disable the alarm and mark myself home.
This then turns on lights if necessary and disables power and such.
2) When the mode of transport turns to "driving" between 16:00 and 19:00 on a weekday then it tells throughout the house that I am driving towards home.
3) When my phone is home and there is an incoming call tell through the speakers in my house whoever is calling and display it on the touchpanel in the livingroom.
3) The same is done for SMS.
4) When my phone is home and it is getting empty tell through the speakers that I need to put it onto the charger.
5) Location is used for a lot of things.
Hopefully it has some use for somebody
The concept works great so far!
Greetings,
Gijs
I implemented on{x} into my system using the rules below which just call an URL in the case of an event on the phone.
Things which I have done with it:
1) When connecting to my WIFI at home and the phone hasn't been seen for a time disable the alarm and mark myself home.
This then turns on lights if necessary and disables power and such.
2) When the mode of transport turns to "driving" between 16:00 and 19:00 on a weekday then it tells throughout the house that I am driving towards home.
3) When my phone is home and there is an incoming call tell through the speakers in my house whoever is calling and display it on the touchpanel in the livingroom.
3) The same is done for SMS.
4) When my phone is home and it is getting empty tell through the speakers that I need to put it onto the charger.
5) Location is used for a lot of things.
Hopefully it has some use for somebody

The concept works great so far!
Greetings,
Gijs
Code: Select all
var baseurl =’’;
var apikey = ‘’;
device.network.on("wifiOn", function (networkSignal){
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxavailable¶ms[avail]=1¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
device.network.on("wifiOff", function (networkSignal){
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxavailable¶ms[avail]=0¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
device.messaging.on('smsReceived', function (sms) {
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxsms¶ms[txt]='+encodeURIComponent(sms.body)+'¶ms[from]='+encodeURIComponent(sms.from)+'¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
device.telephony.on('incomingCall', function (signal) {
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxincomingcall¶ms[number]='+encodeURIComponent(signal.phoneNumber)+'¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
device.scheduler.setTimer({ name: "batLevelSend", time: 0, interval: 15*60*1000 },function () {
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxbatlevel¶ms[level]='+encodeURIComponent(device.battery.status.percentage)+'¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
device.modeOfTransport.on('changed', function(signal) {
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxtransport¶ms[mode]='+encodeURIComponent(signal.current)+'¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
var listener = device.location.createListener('PASSIVE', 120000);
listener.on('changed', function (signal) {
device.ajax({
url: baseurl+'/webapi/exec.html?method=onxlocation¶ms[long]='+encodeURIComponent(signal.location.longitude)+'¶ms[lat]='+encodeURIComponent(signal.location.latitude)+'¶ms[device]=156&apikey=' + apikey,
type: 'GET'
});
});
listener.start();
Re: Microsoft's ON{X}
Gijs,
Keep an eye on the battery... I deleted the app from my phone 2 days ago.
Last week there was an update and after I installed the update, my phone battery went from 100 to 70% in ~9 hours!
I looked at what process was causing this and it was ON{x}... too bad...
Maybe I'll try again in the future, when I have something I really need to use ON{x} for.
Keep an eye on the battery... I deleted the app from my phone 2 days ago.
Last week there was an update and after I installed the update, my phone battery went from 100 to 70% in ~9 hours!
I looked at what process was causing this and it was ON{x}... too bad...
Maybe I'll try again in the future, when I have something I really need to use ON{x} for.