2021-10-17 00:58:14 +08:00
|
|
|
#ifndef MOVEMENT_CONFIG_H_
|
|
|
|
#define MOVEMENT_CONFIG_H_
|
2021-09-28 13:06:37 +08:00
|
|
|
|
2021-10-17 01:14:52 +08:00
|
|
|
#include "simple_clock_face.h"
|
|
|
|
#include "preferences_face.h"
|
|
|
|
#include "set_time_face.h"
|
2021-10-17 04:51:36 +08:00
|
|
|
#include "pulsometer_face.h"
|
2021-10-21 23:02:44 +08:00
|
|
|
#include "thermistor_readout_face.h"
|
2021-10-24 04:23:36 +08:00
|
|
|
#include "thermistor_logging_face.h"
|
2021-10-22 05:28:59 +08:00
|
|
|
#include "character_set_face.h"
|
2021-10-23 10:00:52 +08:00
|
|
|
#include "beats_face.h"
|
2021-11-08 23:50:54 +08:00
|
|
|
#include "day_one_face.h"
|
2021-11-07 11:52:00 +08:00
|
|
|
#include "voltage_face.h"
|
2021-11-04 09:10:10 +08:00
|
|
|
#include "stopwatch_face.h"
|
2021-09-28 13:06:37 +08:00
|
|
|
|
2021-10-17 04:25:30 +08:00
|
|
|
const watch_face_t watch_faces[] = {
|
2021-10-17 01:14:52 +08:00
|
|
|
simple_clock_face,
|
|
|
|
preferences_face,
|
|
|
|
set_time_face,
|
2021-09-28 13:06:37 +08:00
|
|
|
};
|
|
|
|
|
2021-10-17 04:25:30 +08:00
|
|
|
#define MOVEMENT_NUM_FACES (sizeof(watch_faces) / sizeof(watch_face_t))
|
2021-09-28 13:06:37 +08:00
|
|
|
|
2021-10-17 00:58:14 +08:00
|
|
|
#endif // MOVEMENT_CONFIG_H_
|