From: Matheus Afonso Martins Moreira Date: Sat, 7 Sep 2024 23:28:45 +0000 (-0300) Subject: Merge PR #398 - add simon game watch face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b9dbc4ed21908e2f553452b79f1c5e5d06e083d7;p=sensor-watch.git Merge PR #398 - add simon game watch face Adds a watch face that allows playing the classic Simon game with the watch's buzzer and RGB LED. Reviewed-by: Matheus Afonso Martins Moreira GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/398 --- b9dbc4ed21908e2f553452b79f1c5e5d06e083d7 diff --cc movement/make/Makefile index 087b2f0,09fdb33..221b39f --- a/movement/make/Makefile +++ b/movement/make/Makefile @@@ -129,13 -129,7 +129,14 @@@ SRCS += ../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 \ + ../watch_faces/complication/simon_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 f06aa0d,72aae1b..f5e463f --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@@ -104,13 -104,7 +104,14 @@@ #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" + #include "simon_face.h" // New includes go above this line. #endif // MOVEMENT_FACES_H_