Search found 4468 matches

by Martin
11 Mar 2013 07:58
Forum: User Help / Bug Reports
Topic: Launch a shortcut
Replies: 11
Views: 37755

Re: Launch a shortcut

What kind of shortcut do you want to launch?
by Martin
11 Mar 2013 07:53
Forum: General
Topic: no "deep sleep"
Replies: 7
Views: 25734

Re: no "deep sleep"

The trigger device orientation has to process the values sent by the orientation sensor so it has to keep the CPU awake. You can disable the flow when you want to save battery and don't need it (for example disable the flow when the screen is turned off and enable when the screen is turned on).
by Martin
08 Mar 2013 14:51
Forum: User Help / Bug Reports
Topic: Light sensor
Replies: 2
Views: 10062

Re: Light sensor

Perhaps you could create two triggers, one that triggers when the sensor is above a certain value and one that triggers when the value falls below this value and store the result in a global variable. But this will keep the sensor awake all the time and is not optimal for battery consumption. I have...
by Martin
08 Mar 2013 14:46
Forum: User Help / Bug Reports
Topic: [German] Automagic Start
Replies: 9
Views: 26614

Re: [German] Automagic Start

Die eigene Benachrichtigung wird den Automagic Stopp höchstwahrscheinlich nicht verhindern, da man die Notifikation für den Service speziell an das OS übergeben muss. Evtl. wäre es auch möglich, die Notifikation von Automagic mit einem neuen Trigger umzukonfigurieren und dann anstelle der Flowliste ...
by Martin
08 Mar 2013 14:35
Forum: Feature Requests
Topic: Absolute value function
Replies: 1
Views: 8007

Re: Absolute value function

I will add the abs function in the next update.

You have to use the following expression for the moment:
a=-3;
b=if(a<0) -a else a;
by Martin
08 Mar 2013 14:21
Forum: User Help / Bug Reports
Topic: Best way to temporarily store results?
Replies: 4
Views: 15902

Re: Best way to temporarily store results?

You can also use a global variable in an action Script to store the boolean value:
global_xyz = true;

Global variables are also persisted and available when you restart Automagic or reboot the device.
by Martin
08 Mar 2013 14:19
Forum: General
Topic: no "deep sleep"
Replies: 7
Views: 25734

Re: no "deep sleep"

This is a known behavior and by design. Automagic keeps a partial wakelock while a flow is executed so it is recommended to keep flow execution times short.
by Martin
08 Mar 2013 14:14
Forum: Feature Requests
Topic: Preferences Adjustment
Replies: 3
Views: 14028

Re: Preferences Adjustment

The priority seems to work, the notification is only shown in the pulldown. I will test this and change it in the next update when testing goes well.
Thanks for the hint!
by Martin
08 Mar 2013 14:13
Forum: User Help / Bug Reports
Topic: [German] Automagic Start
Replies: 9
Views: 26614

Re: [German] Automagic Start

Sehr schön, das scheint tatsächlich zu funktionieren. So wird die Automagic-Notifikation nur noch im Pulldown angezeigt. Ich lasse es für die nächsten Tage so laufen und schaue, ob der Dienst wirklich am leben bleibt. Wenn alles gut geht, kommt das in das nächste Update.
by Martin
08 Mar 2013 13:42
Forum: User Help / Bug Reports
Topic: Current time in a flow?
Replies: 5
Views: 18031

Re: Current time in a flow?

triggertime is a number containing the milliseconds since 1970. getDate() also returns milliseconds since 1970. You can calculate the difference to get the duration in millis (in an action Script): diff = getDate() - triggertime; and formatted to the duration format often used in Automagic: formatte...