movement: add character set demo

This commit is contained in:
Joey Castillo
2021-10-21 17:28:59 -04:00
parent 4df23ea9f9
commit f1a706792e
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#ifndef CHARACTER_SET_FACE_H_
#define CHARACTER_SET_FACE_H_
#include "movement.h"
void character_set_face_setup(movement_settings_t *settings, void ** context_ptr);
void character_set_face_activate(movement_settings_t *settings, void *context);
bool character_set_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
void character_set_face_resign(movement_settings_t *settings, void *context);
static const watch_face_t character_set_face = {
character_set_face_setup,
character_set_face_activate,
character_set_face_loop,
character_set_face_resign,
NULL
};
#endif // CHARACTER_SET_FACE_H_