Anyone else having alarm bug issues?

Since the 15.10 update, I've noticed various bugs with the alarm system on my 5S - see below for a summary of the various issues I have had.

  • Alarm set to vibrate only - alarm is both sound and vibration one day, then back to vibration only the next day.
  • Alarm set to vibrate only - goes off 5 minutes late and is both sound and vibration.
  • Alarm set to "wake up" - displays "reminder" when going off.

Each of these situations has happened at least once, but with no rhyme or reason I can think of. All my alarms are set to recurring so it's not an issue where I don't know what the alarm is set to.

Anyone else seeing occasional bugs with the alarm system since the latest update?

  • Former Member
    0 Former Member over 5 years ago

    Same issue here!

    I got 5 individual alarms active and the 5th alarm is making sound athough set to vibration only - totally reproducable and not solution available.

    Garmin can't even get such a basic simple taks done right - it's a shame - really.

    As we all suffer Garmin's inability to work professionally, here is my help:

    ....
    // Check every minute
    if (alarm_active == true && alarm_time == time) {
        if (vibration_enable == true)
            vibrate = true;
        if (sound_enable == true)
            sound = true;
    }
    ....