Search found 179 matches

by Micky Micky
04 Dec 2019 21:00
Forum: Flow Sharing Area
Topic: Keep screen on during call
Replies: 0
Views: 16994

Keep screen on during call

When I receive or make a phone call my screen switches off and locks the phone. When driving I have to unlock my phone to see the sat-nav again. This is annoying, dangerous and illegal. I couldn't find a setting for this, so I made this flow. It works but if you can improve it please let me know. Or...
by Micky Micky
04 Dec 2019 20:40
Forum: User Help / Bug Reports
Topic: Rain api help
Replies: 6
Views: 12509

Re: Rain api help

Thanks.
by Micky Micky
02 Dec 2019 17:49
Forum: User Help / Bug Reports
Topic: Rain api help
Replies: 6
Views: 12509

Re: Rain api help

Very nice.
I do like an API

Using your settings, do you know the size of the area shown?

Many thanks
by Micky Micky
22 Nov 2019 16:48
Forum: User Help / Bug Reports
Topic: Extracting information from JSON
Replies: 2
Views: 7236

Re: Extracting information from JSON

If you have that data stored in a string called RESPONSE then: js = fromJSON(response); duration = js["rows"][0]["elements"][0]["duration"]["text"]; The key to JSON is 'parent and child'. For example: js = fromJSON(response); destination = js["destination_addresses"]; There's nothing more in that to...
by Micky Micky
20 Nov 2019 19:48
Forum: User Help / Bug Reports
Topic: Speed & direction info?
Replies: 5
Views: 12247

Re: Speed & direction info?

Action: Init variable location

location_bearing
the direction of travel in degrees East of true North when available (not available on all devices)
location_speed
the speed of travel in meters per second when available (not available on all devices)

mph = "{(location_speed*2.237),numberformat,0}";
by Micky Micky
06 Nov 2019 20:57
Forum: User Help / Bug Reports
Topic: Where is Google maps navigation going?
Replies: 10
Views: 22450

Re: Where is Google maps navigation going?

Thanks for taking the time to look into this for me. I ended up with the same result as you, which I agree is prone to error. Don't waste time on this because I've searched online for the answer to no avail. I'd like to take this opportunity to thank you for all you help provided to this forum. You ...
by Micky Micky
20 Oct 2019 13:13
Forum: User Help / Bug Reports
Topic: Known Issues on Android 9
Replies: 44
Views: 230756

Re: Known Issues on Android 9

Hello Everything worked fine on Samsung S6 for years. Now on Samsung S10 I'm experiencing a problem where it stops the flow at a certain point even though a connection exists. I had to rewrite flows or move it to a separate flow. On the plus side I get to rework methods that I can do better now. Man...
by Micky Micky
19 Oct 2019 09:27
Forum: User Help / Bug Reports
Topic: Where is Google maps navigation going?
Replies: 10
Views: 22450

Re: Where is Google maps navigation going?

I searched the web and found nothing. So I devised this crude solution. Google navigation posts a notification on the status bar. The following script extracts the destination. trim = replace(notification_text, content_title, ""); trim = replace(trim, notification_sub_text, ""); trimlength = length(...
by Micky Micky
16 Oct 2019 20:20
Forum: User Help / Bug Reports
Topic: Where is Google maps navigation going?
Replies: 10
Views: 22450

Where is Google maps navigation going?

Hello,

Is there a way of detecting the destination after the navigation has started?

Thanks