Hi everyone,
I'm using the code below to play an alarm sound (and display an alert) when it's time for the rider to eat or drink in my Connect IQ data field for CrankBite (https://crankbite.com).
if (alarmSound) {
if (!runningtimer.equals(storedTime)) {
Attention.playTone(Attention.TONE_CANARY);
}
}
This has been working fine for a long time, but it suddenly stopped working on my Edge 1050. The code still works correctly in the Connect IQ simulator, and the visual alert is displayed on the device, but there is no sound.
I'm fairly confident that all sound settings are enabled on the Edge 1050, and even Garmin's own alert popup is shown.
The only thing that has changed recently is a firmware update, so I'm wondering if this could be related to that.
Has anyone else experienced this, or is there anything that has changed regarding Attention.playTone() on the Edge 1050?
Any ideas would be greatly appreciated!