// Turn wifi on when coming home
loc = location();
log("Current location lat: " ~ loc["lat"] ~ " lon: " ~ loc["lon"]);
while(true) {
//if airplane mode ON, don't turn wifi ON
if(setting("airplane_mode_on") == 0){
// put your home location here
iAmHome = near(50.00, 14.00, 1000);
if (iAmHome) {
log("At home");
enableWifi(true);
}
}
// wait 2 minutes till next check
sleep(120000);
}
Labels
Sample
(14)
Intent
(5)
Media
(5)
Location
(4)
Funny
(3)
HTTP
(3)
Sleep as Android
(3)
WiFi
(3)
Alarm
(2)
Recording
(2)
Regexp
(2)
Array
(1)
Basic
(1)
Battery
(1)
Browser
(1)
Calculator
(1)
Contacts
(1)
Content Provider
(1)
Cron
(1)
Dialog
(1)
Dictionary
(1)
Export
(1)
Function
(1)
GUI
(1)
Game
(1)
Loop
(1)
Random
(1)
SD Card
(1)
Social
(1)
Temperature
(1)
Text to Speech
(1)
Weather
(1)
Search Scripts
2013-02-26
Turn wifi on when coming home (by Jaromir)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment