From: Matheus Afonso Martins Moreira Date: Sat, 7 Sep 2024 23:49:19 +0000 (-0300) Subject: Merge PR #413 - add thermometer face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=1f6153809b68fee759fdd0cd10b0e57346dede26;p=sensor-watch.git Merge PR #413 - add thermometer face Measures the temperature until it stabilizes for half a minute. This watch face is not meant to diagnose, treat, cure or prevent any disease. Reviewed-by: Matheus Afonso Martins Moreira GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/413 --- 1f6153809b68fee759fdd0cd10b0e57346dede26 diff --cc movement/make/Makefile index 0de414e,da32a45..0adcbe5 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@@ -129,15 -129,7 +129,16 @@@ 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 \ + ../watch_faces/complication/simple_calculator_face.c \ + ../watch_faces/sensor/alarm_thermometer_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 966d69a,fda91ac..392075b --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@@ -104,15 -104,7 +104,16 @@@ #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" +#include "simple_calculator_face.h" + #include "alarm_thermometer_face.h" // New includes go above this line. #endif // MOVEMENT_FACES_H_