]> git.earman.xyz Git - sensor-watch.git/commitdiff
Merge PR #287 - add minimal clock face
authorMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:14:26 +0000 (20:14 -0300)
committerMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Sat, 7 Sep 2024 23:14:26 +0000 (20:14 -0300)
Add a minimalist clock face that shows only hours and minutes.

Reviewed-by: Matheus Afonso Martins Moreira <matheus@matheusmoreira.com>
GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/287

1  2 
movement/make/Makefile
movement/movement_faces.h

index df6597c79d8265ad17a73ee6fbc5dc641eadfc04,56c21a64b56623adf4b8932cea26384aadf3d941..087b2f0a03fec615ef3ffbcf0b4961ee07e6168e
@@@ -121,20 -118,7 +121,21 @@@ SRCS += 
    ../watch_faces/complication/flashlight_face.c \
    ../watch_faces/clock/decimal_time_face.c \
    ../watch_faces/clock/wyoscan_face.c \
 +  ../watch_faces/settings/save_load_face.c \
 +  ../watch_faces/clock/day_night_percentage_face.c \
 +  ../watch_faces/complication/simple_coin_flip_face.c \
 +  ../watch_faces/complication/solstice_face.c \
 +  ../watch_faces/complication/couch_to_5k_face.c \
 +  ../watch_faces/clock/minute_repeater_decimal_face.c \
 +  ../watch_faces/complication/tuning_tones_face.c \
 +  ../watch_faces/complication/kitchen_conversions_face.c \
 +  ../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
 +  ../watch_faces/complication/higher_lower_game_face.c \
 +  ../watch_faces/clock/french_revolutionary_face.c \
+   ../watch_faces/clock/minimal_clock_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.
index 3bf9d1ff6cf4f2da7a1e8a65a76a55c2c7553c73,92b82fb6df2ff7d91a81f65ffe263ed2c974c434..f06aa0dbf2c5e07ee8bd9389987069e9024c7801
  #include "flashlight_face.h"
  #include "decimal_time_face.h"
  #include "wyoscan_face.h"
 +#include "save_load_face.h"
 +#include "day_night_percentage_face.h"
 +#include "simple_coin_flip_face.h"
 +#include "solstice_face.h"
 +#include "couch_to_5k_face.h"
 +#include "minute_repeater_decimal_face.h"
 +#include "tuning_tones_face.h"
 +#include "kitchen_conversions_face.h"
 +#include "wordle_face.h"
 +#include "endless_runner_face.h"
 +#include "periodic_face.h"
 +#include "deadline_face.h"
 +#include "higher_lower_game_face.h"
 +#include "french_revolutionary_face.h"
+ #include "minimal_clock_face.h"
  // New includes go above this line.
  
  #endif // MOVEMENT_FACES_H_