diff --git a/movement/alt_fw/jmm.h b/movement/alt_fw/jmm.h index 878b4a4..5c2cee7 100644 --- a/movement/alt_fw/jmm.h +++ b/movement/alt_fw/jmm.h @@ -10,6 +10,7 @@ const watch_face_t watch_faces[] = { simple_clock_face, stock_stopwatch_face, world_clock_face, + metric_face, totp_face_lfs, moon_phase_face, sunrise_sunset_face, diff --git a/movement/make/Makefile b/movement/make/Makefile index 576822c..cf8850a 100644 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -131,6 +131,7 @@ 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/metric_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 --git a/movement/movement_faces.h b/movement/movement_faces.h index 3557110..17fe809 100644 --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@ -104,6 +104,7 @@ #include "minute_repeater_decimal_face.h" #include "tuning_tones_face.h" #include "kitchen_conversions_face.h" +#include "metric_face.h" // New includes go above this line. #endif // MOVEMENT_FACES_H_