diff options
Diffstat (limited to 'movement/template/template.h')
-rw-r--r-- | movement/template/template.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/movement/template/template.h b/movement/template/template.h new file mode 100644 index 00000000..29f66346 --- /dev/null +++ b/movement/template/template.h @@ -0,0 +1,48 @@ +/* + * MIT License + * + * Copyright (c) <#year#> <#author_name#> + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +#ifndef <#WATCH_FACE_NAME#>_FACE_H_ +#define <#WATCH_FACE_NAME#>_FACE_H_ + +#include "movement.h" + +typedef struct { + // Anything you need to keep track of, put it here! + uint8_t unused; +} <#watch_face_name#>_state_t; + +void <#watch_face_name#>_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr); +void <#watch_face_name#>_face_activate(movement_settings_t *settings, void *context); +bool <#watch_face_name#>_face_loop(movement_event_t event, movement_settings_t *settings, void *context); +void <#watch_face_name#>_face_resign(movement_settings_t *settings, void *context); + +#define <#watch_face_name#>_face ((const watch_face_t){ \ + <#watch_face_name#>_face_setup, \ + <#watch_face_name#>_face_activate, \ + <#watch_face_name#>_face_loop, \ + <#watch_face_name#>_face_resign, \ + NULL, \ +}) + +#endif // <#WATCH_FACE_NAME#>_FACE_H_ |