summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complications/pulseometer_face.h
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complications/pulseometer_face.h')
-rw-r--r--movement/watch_faces/complications/pulseometer_face.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/movement/watch_faces/complications/pulseometer_face.h b/movement/watch_faces/complications/pulseometer_face.h
deleted file mode 100644
index 52bccf24..00000000
--- a/movement/watch_faces/complications/pulseometer_face.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef PULSEOMETER_FACE_H_
-#define PULSEOMETER_FACE_H_
-
-#include "movement.h"
-
-typedef struct {
- bool measuring;
- int16_t pulse;
- int16_t ticks;
-} PulsometerState;
-
-void pulseometer_face_setup(movement_settings_t *settings, void ** context_ptr);
-void pulseometer_face_activate(movement_settings_t *settings, void *context);
-bool pulseometer_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
-void pulseometer_face_resign(movement_settings_t *settings, void *context);
-
-static const watch_face_t pulseometer_face = {
- pulseometer_face_setup,
- pulseometer_face_activate,
- pulseometer_face_loop,
- pulseometer_face_resign,
- NULL
-};
-
-#endif // PULSEOMETER_FACE_H_ \ No newline at end of file