New: XDA launches forum for app developers. Discuss coding, tools, marketing, and more.
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
serpent2005
Old
#101  
Senior Member
Thanks Meter 12
Posts: 120
Join Date: Aug 2011
Quote:
best way to do this is with a free app: https://market.android.com/details?i...ckwithwififree
I'm aware of this free app and I agree that it handles this "task" better than Tasker. I was hoping there was something in Tasker I could do that would give me equally good performance so I don't need two separate apps installed.
 
Myster
Old
#102  
Senior Member
Thanks Meter 20
Posts: 144
Join Date: Jun 2007
Hi
I got a small problem with my device - an ACER Liquid Metal. Whenever i use the PC Sync function ( ACER Sync ) the screen timeout changes to 30 minutes instead the "1 minute" i have chosen

I would like to make Tasker script so that after every synching Taker will reset my Screen Timout to the desired "1 Minute"

Please help

Thanks in advance
 
hulkhaugen
Old
#103  
hulkhaugen's Avatar
Senior Member
Thanks Meter 11
Posts: 205
Join Date: May 2010
Location: Arendal
I'm just learning Tasker, and my lack of programming skills isn't exactly a pro, lol. However, i'm following this guide: Add missed text/mail/call text to minimalisitc text (from tasker), and it pretty much works. But after i read my message(s), the text doesn't go away, just the textnumber. Eg: "one new message" becomes "new message" after i read it. To me, this sounds like there is a problem in the cleansms part of the code, and yes, i also found a misspelling where i was looking for it, where %MINTSSMSTEXT. After changing this, i got confident, but still nothing. Tried to make the MT widget over again, but still no luck. Can't seem to find any errors, only wrong output.

Any suggestions that might help me? I know this is hard for any of you to know without browsing my setup...
 
bt0904
Old
#104  
Junior Member
Thanks Meter 1
Posts: 10
Join Date: Jan 2007
I got tasker setup to trigger some basic sl4a python scripts to integrate with my logitech squeezebox. The results are great. If anyone is doing or thinking of doing something similar, drop me a note.
 
dementik
Old
(Last edited by dementik; 19th January 2012 at 06:18 PM.) Reason: added proper server name
#105  
Junior Member
Thanks Meter 0
Posts: 1
Join Date: Jan 2012
Default Squeezebox + Tasker

Hi,

I have to profiles on Tasker:

1. Coming home
Detects correct GSM cell and puts WiFi on.
Exit task is WiFi off.

2. At home
Waits for that phone connects to my home wifi, waits for 5 seconds (waiting to connect network properly) then does with HTTP GET (to Squeezebox Server/Logitech Media Server) 'Play' -signal:

home-on.php:
Code:
<?php
$fp = fsockopen("localhost", 9090, $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)<br />\n";
} else {
    $out = "00:04:20:26:XX:XX play\r\n";
    fwrite($fp, $out);
    $out = "00:04:20:26:XX:XX mixer volume 22\r\n";
    fwrite($fp, $out);
    fclose($fp);
        exit;
}
?>
and exit task activates when it has been disconnected from home WiFi (as i leave home) and does HTTP GET to this php:

home-off.php
Code:
<?php
$fp = fsockopen("localhost", 9090, $errno, $errstr, 30);
if (!$fp) {
    echo "$errstr ($errno)<br />\n";
} else {
    $out = "00:04:20:26:XX:XX pause 1\r\n\r\n";
    fwrite($fp, $out);
    fclose($fp);
exit;
}
?>
00:04:20:26:XX:XX is of course your squeezebox ID.

Result: When I come home, music starts with right volume. When I leave home, music stops. Quite handy.
 
exempli_gratia
Old
#106  
Member
Thanks Meter 2
Posts: 72
Join Date: Nov 2007
Can the default Tasker notification icon be turned to something useful?

It's there all the time anyway (to make sure the app stays loaded). Would be nice if it could display the battery %, or something.
 
endrus
Old
#107  
Junior Member
Thanks Meter 0
Posts: 18
Join Date: Mar 2010
Location: Budapest
Question php help needed

Hi,

Can you help me with the following php?
I want to start a http get querry but the below php is giving an error.

PHP Code:
<?php
$amount 
$_REQUEST['amount'];
$currency $_REQUEST['curr'];
$exchangeIn $_REQUEST['incurr'];
$prec $_REQUEST['prec'];
$googleQuery $amount ' ' $currency ' in ' $exchangeIn;
$googleQuery urlEncode$googleQuery );
$askGoogle file_get_contents'http://www.google.com/search?q=' $googleQuery );
$matches = array();
preg_match('/= ([0-9]*\.[0-9]*)/'$askGoogle$matches);
$rate $matches[1];
echo 
round($rate,$prec);
?>
 
Stevethegreat
Old
#108  
Senior Member
Thanks Meter 62
Posts: 492
Join Date: Nov 2010
Default proper ICS support?

Any chance that we're going to get the Dpad actions functionality (user input) back in ICS? I've tried every rom in existence for my phone (i9000) and there is/was no Dpad support whatsoever, and it's so valuable to my scripts/profiles .

Tasker's bugs in ICS is what keeps from making the jump. I would be glad if I was to see them fixed...
 
PappaFloyd
Old
#109  
PappaFloyd's Avatar
Member
Thanks Meter 6
Posts: 31
Join Date: Jan 2011
Quote:
Originally Posted by MrDanger View Post
This app is the best app on the market... hands down. #Win
This is a great app I agree. So many uses.
Pass the Dutchie on the left hand side
 
jmbillings
Old
#110  
Senior Member
Thanks Meter 37
Posts: 441
Join Date: Mar 2009
Location: Ely

 
DONATE TO ME
I'm after a little help with Tasker - just getting started.
I've used TFC Task launcher to turn on BT when I put the phone in the car mount. I want to use Tasker to turn off BT when it disconnects from the car radio.

I created a new profile, which uses "Bluetooth Connected", and specified my car radio in there. I then added an "Exit task" to set Bluetooth off.

But it doesn't work. And the icon in the toolbar just says "no profiles active" no matter if it's in the car or not...

Any pointers on what I'm doing wrong or how I can troubleshoot it?