diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2021-10-18 15:37:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 15:37:41 -0400 |
commit | 6210e1c233a3ee66274389e85889b0681102378d (patch) | |
tree | ec94a012f533e8f7017223648321c46c3c9796f4 /movement/movement_config.h | |
parent | 84c0fbfa2a68dc3c29b989947567d111e70a037b (diff) | |
parent | 32710098577c982123d9391132165c0b02a57482 (diff) | |
download | Sensor-Watch-6210e1c233a3ee66274389e85889b0681102378d.tar.gz Sensor-Watch-6210e1c233a3ee66274389e85889b0681102378d.tar.bz2 Sensor-Watch-6210e1c233a3ee66274389e85889b0681102378d.zip |
Merge pull request #17 from joeycastillo/wip-launcher
Resolves #13
Diffstat (limited to 'movement/movement_config.h')
-rw-r--r-- | movement/movement_config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/movement/movement_config.h b/movement/movement_config.h new file mode 100644 index 00000000..6a7aec5a --- /dev/null +++ b/movement/movement_config.h @@ -0,0 +1,17 @@ +#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" + +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_ |