Select one of the symbols to view example projects that use it.
 
Outline
#define HEART_RATE_H
#include "esp_random.h"
#define HEART_RATE_TASK_PERIOD
get_heart_rate();
update_heart_rate();
Files
loading...
SourceVuESP-IDF Framework and ExamplesNimBLE_Security samplemain/include/heart_rate.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #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_heart_rate(void); void update_heart_rate(void); /* ... */ #endif // HEART_RATE_H
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.