Skip to content

Commit

Permalink
Merge PR #266 - add deadline tracking watch face
Browse files Browse the repository at this point in the history
Adds a timing watch face that focuses on
keeping track of specific deadlines.

Dates and times can be set on the watch face
and it will display the time remaining at ever
decreasing levels of granularity for the sake
of brevity and ease of understanding.

For example, it will display years and months if over a year is left,
months and days if less than one year is left,
days and hours if less than one month is left
and the full remaining time if less than a day is left.

It also notifies the user when a deadline has passed recently.

Reviewed-by: Matheus Afonso Martins Moreira <[email protected]>
Tested-on-hardware-by: Konrad Rieck <[email protected]>
GitHub-Pull-Request: #465
  • Loading branch information
matheusmoreira committed Sep 7, 2024
2 parents fb89872 + 820d1f4 commit fb61cc1
Show file tree
Hide file tree
Showing 4 changed files with 716 additions and 0 deletions.
1 change: 1 addition & 0 deletions movement/make/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ SRCS += \
../watch_faces/complication/wordle_face.c \
../watch_faces/complication/endless_runner_face.c \
../watch_faces/complication/periodic_face.c \
../watch_faces/complication/deadline_face.c
# New watch faces go above this line.

# Leave this line at the bottom of the file; it has all the targets for making your project.
Expand Down
1 change: 1 addition & 0 deletions movement/movement_faces.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
#include "wordle_face.h"
#include "endless_runner_face.h"
#include "periodic_face.h"
#include "deadline_face.h"
// New includes go above this line.

#endif // MOVEMENT_FACES_H_
Loading

0 comments on commit fb61cc1

Please sign in to comment.