Is there any difference between Fenix 3 & Fenix 3 HR Watch Face?

Hi,

I've created a watch face for Fenix 3 HR and it's working fine on my Fenix 3 HR watch. However, Fenix 3 users reported that it is not working for theirs. The watch face is at: https://apps.garmin.com/en-US/apps/afc04165-785a-4c9a-acf6-b19e40777a0b

In my simulator for both Fenix 3 & Fenix 3 HR, they are working fine. Does anyone know if there is any difference between the 2?

Thanks,
Paul
  • The difference I saw first thing was that you display the heart rate, and I'm guessing you use getHeartRateHistory() for that. That call will exist on the f3-hr, but not on the f3.

    Trying to use it on the f3 will cause the watchface to crash. It will work in the sim for an f3 though....

    You want to include a "has" to see if it's available on the watch, such as:

    var hasHR=(ActivityMonitor has :HeartRateIterator) ? true : false;
  • Thank you very much!!! This certainly fixed the issue... Thanks once again :)