2021-09-28 13:06:37 +08:00
|
|
|
#ifndef LAUNCHER_CONFIG_H_
|
|
|
|
#define LAUNCHER_CONFIG_H_
|
|
|
|
|
2021-10-04 06:49:21 +08:00
|
|
|
#include "simple_clock_widget.h"
|
|
|
|
#include "preferences_widget.h"
|
2021-10-05 02:12:15 +08:00
|
|
|
#include "set_time_widget.h"
|
2021-10-06 05:58:49 +08:00
|
|
|
#include "pulseometer_widget.h"
|
2021-09-28 13:06:37 +08:00
|
|
|
|
2021-10-05 02:12:15 +08:00
|
|
|
#define LAUNCHER_NUM_WIDGETS 3
|
2021-09-28 13:06:37 +08:00
|
|
|
|
|
|
|
WatchWidget widgets[LAUNCHER_NUM_WIDGETS] = {
|
2021-10-04 06:49:21 +08:00
|
|
|
simple_clock_widget,
|
|
|
|
preferences_widget,
|
2021-10-05 02:12:15 +08:00
|
|
|
set_time_widget,
|
2021-09-28 13:06:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // LAUNCHER_CONFIG_H_
|