Simple Clock: Update to signal exactly on the hour

I was getting the buzzer at 59 minutes past the hour, not exactly on the hour. This changes to buzzing at exactly HOUR:00:00. Tested this locally.
This commit is contained in:
David Keck 2022-01-19 12:06:12 -06:00 committed by GitHub
parent 138b3d0c5e
commit 7de76465d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,5 +143,5 @@ bool simple_clock_face_wants_background_task(movement_settings_t *settings, void
watch_date_time date_time = watch_rtc_get_date_time();
return date_time.unit.minute == 59;
return date_time.unit.minute == 0;
}