sensor-watch/movement/movement_config.h

30 lines
729 B
C
Raw Normal View History

2021-10-17 00:58:14 +08:00
#ifndef MOVEMENT_CONFIG_H_
#define MOVEMENT_CONFIG_H_
2021-10-17 01:14:52 +08:00
#include "simple_clock_face.h"
2021-11-27 02:43:47 +08:00
#include "world_clock_face.h"
2021-10-17 01:14:52 +08:00
#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"
#include "day_one_face.h"
#include "voltage_face.h"
#include "stopwatch_face.h"
#include "totp_face.h"
#include "lis2dh_logging_face.h"
2021-12-11 00:33:07 +08:00
#include "demo_face.h"
#include "hello_there_face.h"
const watch_face_t watch_faces[] = {
2021-10-17 01:14:52 +08:00
simple_clock_face,
preferences_face,
set_time_face,
};
#define MOVEMENT_NUM_FACES (sizeof(watch_faces) / sizeof(watch_face_t))
2021-10-17 00:58:14 +08:00
#endif // MOVEMENT_CONFIG_H_