• RE: Toybox.Activity.Info.offCourseDistance is always null when Off Course Warnings is off

    I can't say what the edge800 does or did, but it sounds like you're saying Dist. to Next is reported on that device as the distance from nearest point on course to next point on course? That doesn't make any sense to me. Imagine that you are on…
  • RE: Monkey C: 0.0 treated as true value

    Brian.ConnectIQ thanks for the explanation. I've coded in a lot of languages, but I have to admit I probably think in terms of C/C++/C# and Javascript most often, although I like a lot of things about other languages.

    Ironically, I can (almost) relate…
  • RE: onTap() Weirdness

    If you add debug statements to onTap() and onUpdate(), you'll find that onUpdate() is triggered immediately after onTap(), as well as during the normal 1-second cycle:
    System.println("onTap now = " + System.getTimer());
    //...
    System.println…
  • RE: Is the 124kB limit forever?

    The devices you mention all have WiFi support. There are some differences in behavior when making requests over WiFi versus over Bluetooth. We're trying to find and eliminate all of them, but there is still work to do.
    ...
    If you want to ensure that…
  • RE: MapTrackView issues - just the simulator or is it the design

    Former Member
    Former Member
    Hi there,

    Honestly - I was so far so much disappointed that decided to wait till further implementation - hoping - Garmin will implement most important features.

    I have to fully agree with you - the major problem I can recognize at the moment is - no way…
  • MapPolyline limits and performance

    Has anybody played much with the Maps and MapPolyline? What are the limits for number of points? How does performance degrade as the number goes up? I don't have an actual device to test on.

    Prior to CIQ 3.0, I have an app that draws it's own bread…
  • RE: Can any Secure Connection Required exceptions be carved out?

    Technically you could put an external proxy in front of it, but to do that you'd have to expose the HTTP port of your Hue hub (via the public IP address of the router and DMZ or port forwarding) so that the proxy could forward requests to it. I don't…
  • Fill in Missing Data in the FIT File

    I'm pondering creating a method over ANT+ to resend data that was missed from the sensor. I think this is pretty doable without big changes to the ANT+ profile for at least the previous 256 messages by just keeping track of missed message numbers and…
  • Simulator differences when handing non 200 response codes

    When the simulator tries to download a HTTP_RESPONSE_CONTENT_TYPE_FIT workout and receives a non 200 response code it is passed back to the makeWebRequest callback, but on at least a 735xt the response appears to be flattened to a responseCode 0 in all…
  • Correct way to detect lack of FIT download support

    What would be the best way to determine at runtime if a device does not support downloading FIT via makeWebRequest()

    (I know I can read the SDK and "know" which devices implement the support, but I like to have generic code which handles (at least a subset…