Search found 77 matches

by heilong
09 Nov 2016 11:13
Forum: User Help / Bug Reports
Topic: Launcher with Locale API
Replies: 13
Views: 113142

Re: Launcher with Locale API

Hey Bushmills,

That Lightning launcher sounds awesome and can pair very well with Automagic. The concept of separate desktops is similar to a UNIX multi-desktop environment.

Your multi-function widget looks especially cool, do you mind sharing it and explaining which features does it have?
by heilong
09 Nov 2016 10:47
Forum: User Help / Bug Reports
Topic: Keeping device unlocked at home
Replies: 1
Views: 6415

Keeping device unlocked at home

This post is a mixture of questions about reliability of certain Automagic triggers, and a practical question seeking advice about particular use case. General idea: When I'm at home, I want my phone to stay reliably unlocked (after I unlock it once). When I get out from home, I want my phone to rel...
by heilong
09 Nov 2016 09:59
Forum: User Help / Bug Reports
Topic: Error using periodic location update trigger
Replies: 4
Views: 11050

Re: Error using periodic location update trigger

Not to steal a topic, but what are the main differences between Periodic Location Update trigger and Location triggers?
What are some example use cases when one is more suitable than the other?
E.g. SmartUnlock uses Location trigger for the same purpose as OP.
by heilong
09 Nov 2016 09:53
Forum: Feature Requests
Topic: Collapse/Expand flow details in flow list
Replies: 0
Views: 8820

Collapse/Expand flow details in flow list

I'd like to have a button that toggles showing flow details in the flow list. I like the current list which can give a basic idea about what each flow does, but for browsing a long list of flows I would collapse those details, so that more flows can fit on screen. How about?
by heilong
09 Nov 2016 00:19
Forum: User Help / Bug Reports
Topic: Ampere
Replies: 22
Views: 48301

Re: Ampere

Looks ok. You may also just divide by 10000 once at the end. About the second option, you should try it yourself first. I'm a programmer, but new to Automagic. I didn't take a look yet at how to use arrays (which you would need for the second option). Too busy about other things at the moment. Try i...
by heilong
07 Nov 2016 22:15
Forum: Flow Sharing Area
Topic: Create your own quick setting tile on Lollipop
Replies: 46
Views: 136929

Re: Create your own quick setting tile on Lollipop

Thanks! Oh, it is awesome! I didn't think I don't even have to extract the icon.
by heilong
07 Nov 2016 20:02
Forum: Flow Sharing Area
Topic: Create your own quick setting tile on Lollipop
Replies: 46
Views: 136929

Re: Create your own quick setting tile on Lollipop

Looks like RR is using AOSP Quick Settings, but there's no System Tuner to try this . I've flashed another ROM (Beanstalk), it uses CM Quick Settings. I was able to add a quick tile using the CM Quick Settings Tile trigger. Would you consider adding adding ability to select an installed app's icon a...
by heilong
07 Nov 2016 17:13
Forum: User Help / Bug Reports
Topic: Ampere
Replies: 22
Views: 48301

Re: Ampere

Probably. It is available on my Moto G3 (Osprey). My suggestion: 1) If you just want to calculate and display an average once, do a simple loop. Set a counter variable to the number of samples you want, while counter is > 0, add a sample to an accumulator variable, decrement the counter by 1, and sl...
by heilong
07 Nov 2016 00:24
Forum: User Help / Bug Reports
Topic: Ampere
Replies: 22
Views: 48301

Re: Ampere

Did you try to use battery_current_avg? Does it not give you the results you like?
Why don't you just make a proper loop? Using a separate variable for every sample is quite bad programming... What if you'll change your mind and decide to average over 15 second intervals?