diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-10-25 14:52:40 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-10-25 14:52:40 -0400 |
commit | 22c072ac3f4fb450315b204dc4a6f2644c8665a7 (patch) | |
tree | 340cedd1875e873448449a868bf9c937cece881f /movement/movement_config.h | |
parent | 24e160611e12df8d31edc02af21ce07ad0929e1b (diff) | |
parent | badb4ba9090c6228738a555b82c988aafbe72fec (diff) | |
download | Sensor-Watch-22c072ac3f4fb450315b204dc4a6f2644c8665a7.tar.gz Sensor-Watch-22c072ac3f4fb450315b204dc4a6f2644c8665a7.tar.bz2 Sensor-Watch-22c072ac3f4fb450315b204dc4a6f2644c8665a7.zip |
Merge branch 'main' into more-asf-files
Diffstat (limited to 'movement/movement_config.h')
-rw-r--r-- | movement/movement_config.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/movement/movement_config.h b/movement/movement_config.h new file mode 100644 index 00000000..3e911477 --- /dev/null +++ b/movement/movement_config.h @@ -0,0 +1,21 @@ +#ifndef MOVEMENT_CONFIG_H_ +#define MOVEMENT_CONFIG_H_ + +#include "simple_clock_face.h" +#include "preferences_face.h" +#include "set_time_face.h" +#include "pulsometer_face.h" +#include "thermistor_readout_face.h" +#include "thermistor_logging_face.h" +#include "character_set_face.h" +#include "beats_face.h" + +const watch_face_t watch_faces[] = { + simple_clock_face, + preferences_face, + set_time_face, +}; + +#define MOVEMENT_NUM_FACES (sizeof(watch_faces) / sizeof(watch_face_t)) + +#endif // MOVEMENT_CONFIG_H_ |