Files
nimble_gatt_temp_server/main/include/temp.h

16 lines
279 B
C

#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 */
uint8_t get_temp(void);
void update_temp(void);
#endif // HEART_RATE_H