From: Matheus Afonso Martins Moreira Date: Sat, 7 Sep 2024 22:37:43 +0000 (-0300) Subject: Merge PR #269 - add french revolutionary time face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=7de53f9fa09c10162b0cebde60ebf02ab65edf69;p=sensor-watch.git Merge PR #269 - add french revolutionary time face Adds a french revolutionary time watch face which displays the time divided into ten hours of one hundred minutes each which are in turn divided into one hundred seconds each. Reviewed-by: Matheus Afonso Martins Moreira Reviewed-by: Wesley Aptekar-Cassels Reviewed-by: Alex Maestas Tested-on-hardware-by: CarpeNoctem GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/269 --- 7de53f9fa09c10162b0cebde60ebf02ab65edf69 diff --cc movement/make/Makefile index 36fac2e,1d8ccfe..df6597c --- a/movement/make/Makefile +++ b/movement/make/Makefile @@@ -121,19 -118,7 +121,20 @@@ 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 \ # 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. diff --cc movement/movement_faces.h index 29c1c5a,9ee8737..3bf9d1f --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@@ -96,19 -95,7 +96,20 @@@ #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" // New includes go above this line. #endif // MOVEMENT_FACES_H_