Merge pull request #38 from davidskeck/patch-2

Simple Clock: Update to signal exactly on the hour
This commit is contained in:
joeycastillo 2022-01-19 14:14:39 -05:00 committed by GitHub
commit a499cebc3c
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;
}