2025-12-01 00:42:14 +01:00
|
|
|
#ifndef HEART_RATE_H
|
|
|
|
|
#define HEART_RATE_H
|
|
|
|
|
|
|
|
|
|
/* Includes */
|
|
|
|
|
/* ESP APIs */
|
|
|
|
|
#include "esp_random.h"
|
|
|
|
|
|
|
|
|
|
/* Defines */
|
|
|
|
|
#define HEART_RATE_TASK_PERIOD (1000 / portTICK_PERIOD_MS)
|
|
|
|
|
|
|
|
|
|
/* Public function declarations */
|
2025-12-01 12:18:38 +01:00
|
|
|
uint8_t get_temp(void);
|
|
|
|
|
void update_temp(void);
|
2025-12-01 00:42:14 +01:00
|
|
|
|
|
|
|
|
#endif // HEART_RATE_H
|