summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/thermistor/thermistor_logging_face.h
blob: 03e7ff3c16cc13f22d7da0ab3a94a0e2783d2bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef THERMISTOR_LOGGING_FACE_H_
#define THERMISTOR_LOGGING_FACE_H_

#include "movement.h"
#include "watch.h"

#define THERMISTOR_LOGGING_NUM_DATA_POINTS (36)

typedef struct {
    watch_date_time timestamp;
    float temperature_c;
} thermistor_logger_data_point_t;

typedef struct {
    uint8_t display_index;  // the index we are displaying on screen
    uint8_t ts_ticks;       // when the user taps the LIGHT button, we show the timestamp for a few ticks.
    int32_t data_points;    // the absolute number of data points logged
    thermistor_logger_data_point_t data[THERMISTOR_LOGGING_NUM_DATA_POINTS];
} thermistor_logger_state_t;

void thermistor_logging_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);
void thermistor_logging_face_activate(movement_settings_t *settings, void *context);
bool thermistor_logging_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
void thermistor_logging_face_resign(movement_settings_t *settings, void *context);
bool thermistor_logging_face_wants_background_task(movement_settings_t *settings, void *context);

static const watch_face_t thermistor_logging_face = {
    thermistor_logging_face_setup,
    thermistor_logging_face_activate,
    thermistor_logging_face_loop,
    thermistor_logging_face_resign,
    thermistor_logging_face_wants_background_task
};

#endif // THERMISTOR_LOGGING_FACE_H_