Search found 80 matches

by fagci
01 Feb 2020 21:41
Forum: Flow Sharing Area
Topic: SQLite for Automagic
Replies: 14
Views: 42715

Re: SQLite for Automagic

VitPMir wrote:
31 Jan 2020 18:54
Not all phones have sqlite3.
Maybe that is without custom ROM. I always flash new smartphone, coz stock is bad for me. ㄟ(ツ)ㄏ
by fagci
31 Jan 2020 18:40
Forum: Flow Sharing Area
Topic: SQLite for Automagic
Replies: 14
Views: 42715

Re: SQLite for Automagic

Sorry, but in every Android phone sqlite3 console utility exists. So, no need to write more code instead of SQL

Example: http://automagic4android.com/flow.php?i ... e616f2e3b5
by fagci
03 Nov 2019 13:05
Forum: Feature Requests
Topic: Modify image EXIF metadata
Replies: 2
Views: 15939

Re: Modify image EXIF metadata

+1 to this.
by fagci
03 Nov 2019 07:51
Forum: Flow Sharing Area
Topic: Sequence trigger with delay
Replies: 0
Views: 19471

Sequence trigger with delay

Flow shows simple way to describe multiple trigger sequence to run flows.

Instead of VOL↓@VOL↓ you can use different triggers to acts as passcode.

flows.xml
by fagci
03 Nov 2019 07:34
Forum: Flow Sharing Area
Topic: JSON api server
Replies: 0
Views: 18417

JSON api server

Create flow named api_<method>, assign data variable inside that flow.
API sits at 127.0.0.1:8088/api/<method>.

api_core.xml
by fagci
09 Feb 2019 07:15
Forum: User Help / Bug Reports
Topic: Known Issues on Android 9
Replies: 44
Views: 220273

Re: Known Issues on Android 9

In /sys/class/thermal I have 20 thermal zones. Some of them has inadequate temperature information. How can I use different thermal data? Only "cat" command is solution?

upd: got it, battery temp is in /sys/class/power_supply/. But it wrong
by fagci
29 Jan 2019 03:10
Forum: Flow Sharing Area
Topic: Takes photo when unlock
Replies: 0
Views: 13392

Takes photo when unlock

http://automagic4android.com/flow.php?i ... eb572e0545

Combines images from 2 cams, its fun.

Shots stored inside DCIM/intruders
by fagci
18 Dec 2018 17:25
Forum: General
Topic: Time calculate
Replies: 8
Views: 20476

Re: Time calculate

Possible question not correct, because: If you want to calc time between two dates, simply save them and calc timestamp difference. If you want substract interval, ex.: 7h, 5min (7:05:00), use my method. //btw, current day domain is not needeed. targetTime = '1:30:00'; d1 = getDate(targetTime, "HH:m...
by fagci
18 Dec 2018 15:18
Forum: General
Topic: Time calculate
Replies: 8
Views: 20476

Re: Time calculate

d = "1:30:00";

p = split(d, ":");

cDate = getDate();

nDate = addSeconds(cDate,p[2]);
nDate = addMinutes(nDate,p[1]);
nDate = addHours(nDate,p[0]);

fDate ="{nDate, dateformat,HH:mm:ss}";


log(fDate);

// sorry, didn't understand question at first read
by fagci
22 Nov 2018 19:52
Forum: General
Topic: Plugin development -- export variable
Replies: 3
Views: 11281

Re: Plugin development -- export variable

First attempt, but not provides variable, will research next.
Simply go through docs https://tasker.joaoapps.com/plugins.html