实物照片
模块简介
max30102是一个集成的脉搏血氧仪和心率监测仪生物传感器的模块。
它集成了一个红光led和一个红外光led、光电检测器、光器件,以及带环境光抑制的低噪声电子电路。
max30102采用一个1.8v电源和一个独立的5.0v用于内部led的电源,应用于可穿戴设备进行心率和血氧采集检测,佩戴于手指点耳垂和手腕处。
标准的i2c兼容的通信接口可以将采集到的数值传输给arduino、kl25z、stm32、stc51等单片机进行心率和血氧计算。
此外,该芯片还可以通过软件关断模块,待机电流接近为零,实现电源始终维持供电状态。
主要参数:
产品名称 | max30102 心率模块 |
---|---|
led峰值波长器 | 660nm/880nm |
led供电电压 | 3.3 ~ 5v |
检测信号类型 | 光反射信号(ppg) |
输出信号接口 | i2c接口 |
通信接口电压 | 1.8 ~ 3.3v ~ 5v(可选) |
产品尺寸:
工作原理
光溶积法:利用人体组织在血管搏动时造成透光率不同来进行脉搏和血氧饱和度测量
光源:采用对动脉血中痒合血红蛋白(hbo2)和血红蛋白(hb)有选择性的特定波长的发光二极管
透光率转化为电信号:动脉搏动充血容积变化导致这束光的透光率发送改变,此时由光电变换接收经人体组织反射光线,转变为电信号并将其放大输出。
原理图及引脚说明
引脚说明
名称 | 管教定义 |
---|---|
vin | 电源输入 1.6v-5.5v |
3位焊盘 | 选择总线的上拉电平,取决于引脚主控电压可选1.8v或者3.3v |
sda | iic-sda |
scl | iic-scl |
gnd | 地 |
int | int 低电平有效中断(漏极开路)max30102 的中断引脚 |
ird | ir_drv ir led阴极和led驱动器连接点 一般不接 |
rd | r_drv 红色led阴极和led驱动器连接点 一般不接 |
stm32软件驱动
使用stm32f103c8t6最小系统开发板验证。
接线如下:
max30102模块接口:pb9-sda,pb8-scl,pb7-int
pa2/pa3为串口传输口tx和rx,波特率设置为115200
pc13为显示led
iic通信代码
#include "mbed.h"
#include "max30102.h"
i2c i2c(i2c_sda, i2c_scl);//sda-pb9,scl-pb8
bool maxim_max30102_write_reg(uint8_t uch_addr, uint8_t uch_data)
/**
* \brief write a value to a max30102 register
* \par details
* this function writes a value to a max30102 register
*
* \param[in] uch_addr - register address
* \param[in] uch_data - register data
*
* \retval true on success
*/
{
char ach_i2c_data[2];
ach_i2c_data[0]=uch_addr;
ach_i2c_data[1]=uch_data;
if(i2c.write(i2c_write_addr, ach_i2c_data, 2, false)==0)
return true;
else
return false;
}
bool maxim_max30102_read_reg(uint8_t uch_addr, uint8_t *puch_data)
/**
* \brief read a max30102 register
* \par details
* this function reads a max30102 register
*
* \param[in] uch_addr - register address
* \param[out] puch_data - pointer that stores the register data
*
* \retval true on success
*/
{
char ch_i2c_data;
ch_i2c_data=uch_addr;
if(i2c.write(i2c_write_addr, &ch_i2c_data, 1, true)!=0)
return false;
if(i2c.read(i2c_read_addr, &ch_i2c_data, 1, false)==0)
{
*puch_data=(uint8_t) ch_i2c_data;
return true;
}
else
return false;
}
bool maxim_max30102_init()
/**
* \brief initialize the max30102
* \par details
* this function initializes the max30102
*
* \param none
*
* \retval true on success
*/
{
if(!maxim_max30102_write_reg(reg_intr_enable_1,0xc0)) // intr setting
return false;
if(!maxim_max30102_write_reg(reg_intr_enable_2,0x00))
return false;
if(!maxim_max30102_write_reg(reg_fifo_wr_ptr,0x00)) //fifo_wr_ptr[4:0]
return false;
if(!maxim_max30102_write_reg(reg_ovf_counter,0x00)) //ovf_counter[4:0]
return false;
if(!maxim_max30102_write_reg(reg_fifo_rd_ptr,0x00)) //fifo_rd_ptr[4:0]
return false;
if(!maxim_max30102_write_reg(reg_fifo_config,0x0f)) //sample avg = 1, fifo rollover=false, fifo almost full = 17
return false;
if(!maxim_max30102_write_reg(reg_mode_config,0x03)) //0x02 for red only, 0x03 for spo2 mode 0x07 multimode led
return false;
if(!maxim_max30102_write_reg(reg_spo2_config,0x27)) // spo2_adc range = 4096na, spo2 sample rate (100 hz), led pulsewidth (400us)
return false;
if(!maxim_max30102_write_reg(reg_led1_pa,0x24)) //choose value for ~ 7ma for led1
return false;
if(!maxim_max30102_write_reg(reg_led2_pa,0x24)) // choose value for ~ 7ma for led2
return false;
if(!maxim_max30102_write_reg(reg_pilot_pa,0x7f)) // choose value for ~ 25ma for pilot led
return false;
return true;
}
bool maxim_max30102_read_fifo(uint32_t *pun_red_led, uint32_t *pun_ir_led)
/**
* \brief read a set of samples from the max30102 fifo register
* \par details
* this function reads a set of samples from the max30102 fifo register
*
* \param[out] *pun_red_led - pointer that stores the red led reading data
* \param[out] *pun_ir_led - pointer that stores the ir led reading data
*
* \retval true on success
*/
{
uint32_t un_temp;
unsigned char uch_temp;
*pun_red_led=0;
*pun_ir_led=0;
char ach_i2c_data[6];
//read and clear status register
maxim_max30102_read_reg(reg_intr_status_1, &uch_temp);
maxim_max30102_read_reg(reg_intr_status_2, &uch_temp);
ach_i2c_data[0]=reg_fifo_data;
if(i2c.write(i2c_write_addr, ach_i2c_data, 1, true)!=0)
return false;
if(i2c.read(i2c_read_addr, ach_i2c_data, 6, false)!=0)
{
return false;
}
un_temp=(unsigned char) ach_i2c_data[0];
un_temp<<=16;
*pun_red_led+=un_temp;
un_temp=(unsigned char) ach_i2c_data[1];
un_temp<<=8;
*pun_red_led+=un_temp;
un_temp=(unsigned char) ach_i2c_data[2];
*pun_red_led+=un_temp;
un_temp=(unsigned char) ach_i2c_data[3];
un_temp<<=16;
*pun_ir_led+=un_temp;
un_temp=(unsigned char) ach_i2c_data[4];
un_temp<<=8;
*pun_ir_led+=un_temp;
un_temp=(unsigned char) ach_i2c_data[5];
*pun_ir_led+=un_temp;
*pun_red_led&=0x03ffff; //mask msb [23:18]
*pun_ir_led&=0x03ffff; //mask msb [23:18]
return true;
}
bool maxim_max30102_reset()
/**
* \brief reset the max30102
* \par details
* this function resets the max30102
*
* \param none
*
* \retval true on success
*/
{
if(!maxim_max30102_write_reg(reg_mode_config,0x40))
return false;
else
return true;
}
数值转换代码
#include "algorithm.h"
#include "mbed.h"
void maxim_heart_rate_and_oxygen_saturation(uint32_t *pun_ir_buffer, int32_t n_ir_buffer_length, uint32_t *pun_red_buffer, int32_t *pn_spo2, int8_t *pch_spo2_valid,
int32_t *pn_heart_rate, int8_t *pch_hr_valid)
/**
* \brief calculate the heart rate and spo2 level
* \par details
* by detecting peaks of ppg cycle and corresponding ac/dc of red/infra-red signal, the ratio for the spo2 is computed.
* since this algorithm is aiming for arm m0/m3. formaula for spo2 did not achieve the accuracy due to register overflow.
* thus, accurate spo2 is precalculated and save longo uch_spo2_table[] per each ratio.
*
* \param[in] *pun_ir_buffer - ir sensor data buffer
* \param[in] n_ir_buffer_length - ir sensor data buffer length
* \param[in] *pun_red_buffer - red sensor data buffer
* \param[out] *pn_spo2 - calculated spo2 value
* \param[out] *pch_spo2_valid - 1 if the calculated spo2 value is valid
* \param[out] *pn_heart_rate - calculated heart rate value
* \param[out] *pch_hr_valid - 1 if the calculated heart rate value is valid
*
* \retval none
*/
{
uint32_t un_ir_mean ,un_only_once ;
int32_t k ,n_i_ratio_count;
int32_t i, s, m, n_exact_ir_valley_locs_count ,n_middle_idx;
int32_t n_th1, n_npks,n_c_min;
int32_t an_ir_valley_locs[15] ;
int32_t an_exact_ir_valley_locs[15] ;
int32_t an_dx_peak_locs[15] ;
int32_t n_peak_interval_sum;
int32_t n_y_ac, n_x_ac;
int32_t n_spo2_calc;
int32_t n_y_dc_max, n_x_dc_max;
int32_t n_y_dc_max_idx, n_x_dc_max_idx;
int32_t an_ratio[5],n_ratio_average;
int32_t n_nume, n_denom ;
// remove dc of ir signal
un_ir_mean =0;
for (k=0 ; k<n_ir_buffer_length ; k++ ) un_ir_mean += pun_ir_buffer[k] ;
un_ir_mean =un_ir_mean/n_ir_buffer_length ;
for (k=0 ; k<n_ir_buffer_length ; k++ ) an_x[k] = pun_ir_buffer[k] - un_ir_mean ;
// 4 pt moving average
for(k=0; k< buffer_size-ma4_size; k++){
n_denom= ( an_x[k]+an_x[k+1]+ an_x[k+2]+ an_x[k+3]);
an_x[k]= n_denom/(int32_t)4;
}
// get difference of smoothed ir signal
for( k=0; k<buffer_size-ma4_size-1; k++)
an_dx[k]= (an_x[k+1]- an_x[k]);
// 2-pt moving average to an_dx
for(k=0; k< buffer_size-ma4_size-2; k++){
an_dx[k] = ( an_dx[k]+an_dx[k+1])/2 ;
}
// hamming window
// flip wave form so that we can detect valley with peak detector
for ( i=0 ; i<buffer_size-hamming_size-ma4_size-2 ;i++){
s= 0;
for( k=i; k<i+ hamming_size ;k++){
s -= an_dx[k] *auw_hamm[k-i] ;
}
an_dx[i]= s/ (int32_t)1146; // divide by sum of auw_hamm
}
n_th1=0; // threshold calculation
for ( k=0 ; k<buffer_size-hamming_size ;k++){
n_th1 += ((an_dx[k]>0)? an_dx[k] : ((int32_t)0-an_dx[k])) ;
}
n_th1= n_th1/ ( buffer_size-hamming_size);
// peak location is acutally index for sharpest location of raw signal since we flipped the signal
maxim_find_peaks( an_dx_peak_locs, &n_npks, an_dx, buffer_size-hamming_size, n_th1, 8, 5 );//peak_height, peak_distance, max_num_peaks
n_peak_interval_sum =0;
if (n_npks>=2){
for (k=1; k<n_npks; k++)
n_peak_interval_sum += (an_dx_peak_locs[k]-an_dx_peak_locs[k -1]);
n_peak_interval_sum=n_peak_interval_sum/(n_npks-1);
*pn_heart_rate=(int32_t)(6000/n_peak_interval_sum);// beats per minutes
*pch_hr_valid = 1;
}
else {
*pn_heart_rate = -999;
*pch_hr_valid = 0;
}
for ( k=0 ; k<n_npks ;k++)
an_ir_valley_locs[k]=an_dx_peak_locs[k]+hamming_size/2;
// raw value : red(=y) and ir(=x)
// we need to assess dc and ac value of ir and red ppg.
for (k=0 ; k<n_ir_buffer_length ; k++ ) {
an_x[k] = pun_ir_buffer[k] ;
an_y[k] = pun_red_buffer[k] ;
}
// find precise min near an_ir_valley_locs
n_exact_ir_valley_locs_count =0;
for(k=0 ; k<n_npks ;k++){
un_only_once =1;
m=an_ir_valley_locs[k];
n_c_min= 16777216;//2^24;
if (m+5 < buffer_size-hamming_size && m-5 >0){
for(i= m-5;i<m+5; i++)
if (an_x[i]<n_c_min){
if (un_only_once >0){
un_only_once =0;
}
n_c_min= an_x[i] ;
an_exact_ir_valley_locs[k]=i;
}
if (un_only_once ==0)
n_exact_ir_valley_locs_count ++ ;
}
}
if (n_exact_ir_valley_locs_count <2 ){
*pn_spo2 = -999 ; // do not use spo2 since signal ratio is out of range
*pch_spo2_valid = 0;
return;
}
// 4 pt ma
for(k=0; k< buffer_size-ma4_size; k++){
an_x[k]=( an_x[k]+an_x[k+1]+ an_x[k+2]+ an_x[k+3])/(int32_t)4;
an_y[k]=( an_y[k]+an_y[k+1]+ an_y[k+2]+ an_y[k+3])/(int32_t)4;
}
//using an_exact_ir_valley_locs , find ir-red dc andir-red ac for spo2 calibration ratio
//finding ac/dc maximum of raw ir * red between two valley locations
n_ratio_average =0;
n_i_ratio_count =0;
for(k=0; k< 5; k++) an_ratio[k]=0;
for (k=0; k< n_exact_ir_valley_locs_count; k++){
if (an_exact_ir_valley_locs[k] > buffer_size ){
*pn_spo2 = -999 ; // do not use spo2 since valley loc is out of range
*pch_spo2_valid = 0;
return;
}
}
// find max between two valley locations
// and use ratio betwen ac compoent of ir & red and dc compoent of ir & red for spo2
for (k=0; k< n_exact_ir_valley_locs_count-1; k++){
n_y_dc_max= -16777216 ;
n_x_dc_max= - 16777216;
if (an_exact_ir_valley_locs[k+1]-an_exact_ir_valley_locs[k] >10){
for (i=an_exact_ir_valley_locs[k]; i< an_exact_ir_valley_locs[k+1]; i++){
if (an_x[i]> n_x_dc_max) {n_x_dc_max =an_x[i];n_x_dc_max_idx =i; }
if (an_y[i]> n_y_dc_max) {n_y_dc_max =an_y[i];n_y_dc_max_idx=i;}
}
n_y_ac= (an_y[an_exact_ir_valley_locs[k+1]] - an_y[an_exact_ir_valley_locs[k] ] )*(n_y_dc_max_idx -an_exact_ir_valley_locs[k]); //red
n_y_ac= an_y[an_exact_ir_valley_locs[k]] + n_y_ac/ (an_exact_ir_valley_locs[k+1] - an_exact_ir_valley_locs[k]) ;
n_y_ac= an_y[n_y_dc_max_idx] - n_y_ac; // subracting linear dc compoenents from raw
n_x_ac= (an_x[an_exact_ir_valley_locs[k+1]] - an_x[an_exact_ir_valley_locs[k] ] )*(n_x_dc_max_idx -an_exact_ir_valley_locs[k]); // ir
n_x_ac= an_x[an_exact_ir_valley_locs[k]] + n_x_ac/ (an_exact_ir_valley_locs[k+1] - an_exact_ir_valley_locs[k]);
n_x_ac= an_x[n_y_dc_max_idx] - n_x_ac; // subracting linear dc compoenents from raw
n_nume=( n_y_ac *n_x_dc_max)>>7 ; //prepare x100 to preserve floating value
n_denom= ( n_x_ac *n_y_dc_max)>>7;
if (n_denom>0 && n_i_ratio_count <5 && n_nume != 0)
{
an_ratio[n_i_ratio_count]= (n_nume*100)/n_denom ; //formular is ( n_y_ac *n_x_dc_max) / ( n_x_ac *n_y_dc_max) ;
n_i_ratio_count++;
}
}
}
maxim_sort_ascend(an_ratio, n_i_ratio_count);
n_middle_idx= n_i_ratio_count/2;
if (n_middle_idx >1)
n_ratio_average =( an_ratio[n_middle_idx-1] +an_ratio[n_middle_idx])/2; // use median
else
n_ratio_average = an_ratio[n_middle_idx ];
if( n_ratio_average>2 && n_ratio_average <184){
n_spo2_calc= uch_spo2_table[n_ratio_average] ;
*pn_spo2 = n_spo2_calc ;
*pch_spo2_valid = 1;// float_spo2 = -45.060*n_ratio_average* n_ratio_average/10000 + 30.354 *n_ratio_average/100 + 94.845 ; // for comparison with table
}
else{
*pn_spo2 = -999 ; // do not use spo2 since signal ratio is out of range
*pch_spo2_valid = 0;
}
}
void maxim_find_peaks(int32_t *pn_locs, int32_t *pn_npks, int32_t *pn_x, int32_t n_size, int32_t n_min_height, int32_t n_min_distance, int32_t n_max_num)
/**
* \brief find peaks
* \par details
* find at most max_num peaks above min_height separated by at least min_distance
*
* \retval none
*/
{
maxim_peaks_above_min_height( pn_locs, pn_npks, pn_x, n_size, n_min_height );
maxim_remove_close_peaks( pn_locs, pn_npks, pn_x, n_min_distance );
*pn_npks = min( *pn_npks, n_max_num );
}
void maxim_peaks_above_min_height(int32_t *pn_locs, int32_t *pn_npks, int32_t *pn_x, int32_t n_size, int32_t n_min_height)
/**
* \brief find peaks above n_min_height
* \par details
* find all peaks above min_height
*
* \retval none
*/
{
int32_t i = 1, n_width;
*pn_npks = 0;
while (i < n_size-1){
if (pn_x[i] > n_min_height && pn_x[i] > pn_x[i-1]){ // find left edge of potential peaks
n_width = 1;
while (i+n_width < n_size && pn_x[i] == pn_x[i+n_width]) // find flat peaks
n_width++;
if (pn_x[i] > pn_x[i+n_width] && (*pn_npks) < 15 ){ // find right edge of peaks
pn_locs[(*pn_npks)++] = i;
// for flat peaks, peak location is left edge
i += n_width+1;
}
else
i += n_width;
}
else
i++;
}
}
void maxim_remove_close_peaks(int32_t *pn_locs, int32_t *pn_npks, int32_t *pn_x, int32_t n_min_distance)
/**
* \brief remove peaks
* \par details
* remove peaks separated by less than min_distance
*
* \retval none
*/
{
int32_t i, j, n_old_npks, n_dist;
/* order peaks from large to small */
maxim_sort_indices_descend( pn_x, pn_locs, *pn_npks );
for ( i = -1; i < *pn_npks; i++ ){
n_old_npks = *pn_npks;
*pn_npks = i+1;
for ( j = i+1; j < n_old_npks; j++ ){
n_dist = pn_locs[j] - ( i == -1 ? -1 : pn_locs[i] ); // lag-zero peak of autocorr is at index -1
if ( n_dist > n_min_distance || n_dist < -n_min_distance )
pn_locs[(*pn_npks)++] = pn_locs[j];
}
}
// resort indices longo ascending order
maxim_sort_ascend( pn_locs, *pn_npks );
}
void maxim_sort_ascend(int32_t *pn_x,int32_t n_size)
/**
* \brief sort array
* \par details
* sort array in ascending order (insertion sort algorithm)
*
* \retval none
*/
{
int32_t i, j, n_temp;
for (i = 1; i < n_size; i++) {
n_temp = pn_x[i];
for (j = i; j > 0 && n_temp < pn_x[j-1]; j--)
pn_x[j] = pn_x[j-1];
pn_x[j] = n_temp;
}
}
void maxim_sort_indices_descend(int32_t *pn_x, int32_t *pn_indx, int32_t n_size)
/**
* \brief sort indices
* \par details
* sort indices according to descending order (insertion sort algorithm)
*
* \retval none
*/
{
int32_t i, j, n_temp;
for (i = 1; i < n_size; i++) {
n_temp = pn_indx[i];
for (j = i; j > 0 && pn_x[n_temp] > pn_x[pn_indx[j-1]]; j--)
pn_indx[j] = pn_indx[j-1];
pn_indx[j] = n_temp;
}
}
main函数
#include "stm32f103c8t6.h"
#include "mbed.h"
#include "algorithm.h"
#include "max30102.h"
#define max_brightness 255
uint32_t aun_ir_buffer[500]; //ir led sensor data
int32_t n_ir_buffer_length; //data length
uint32_t aun_red_buffer[500]; //red led sensor data
int32_t n_sp02; //spo2 value
int8_t ch_spo2_valid; //indicator to show if the sp02 calculation is valid
int32_t n_heart_rate; //heart rate value
int8_t ch_hr_valid; //indicator to show if the heart rate calculation is valid
uint8_t uch_dummy;
serial pc(serial_tx, serial_rx); //initializes the serial port, tx-pa2, rx-pa3
pwmout pwmled(pb_3); //initializes the pwm output pb3 that connects to the led
digitalin int(pb_7); //pin pb7 connects to the interrupt output pin of the max30102
digitalout led(pc_13); //pc13 connects to the on board user led
// the setup routine runs once when you press reset:
int main() {
uint32_t un_min, un_max, un_prev_data; //variables to calculate the on-board led brightness that reflects the heartbeats
int i;
int32_t n_brightness;
float f_temp;
maxim_max30102_reset(); //resets the max30102
// initialize serial communication at 115200 bits per second:
pc.baud(115200);
pc.format(8,serialbase::none,1);
wait(1);
//read and clear status register
maxim_max30102_read_reg(0,&uch_dummy);
//wait until the user presses a key
// while(pc.readable()==0)
// {
// pc.printf("\x1b[2j"); //clear terminal program screen
// pc.printf("press any key to start conversion\n\r");
// wait(1);
// }
// uch_dummy=getchar();
maxim_max30102_init(); //initializes the max30102
n_brightness=0;
un_min=0x3ffff;
un_max=0;
n_ir_buffer_length=500; //buffer length of 100 stores 5 seconds of samples running at 100sps
//read the first 500 samples, and determine the signal range
for(i=0;i<n_ir_buffer_length;i++)
{
while(int.read()==1); //wait until the interrupt pin asserts
maxim_max30102_read_fifo((aun_red_buffer+i), (aun_ir_buffer+i)); //read from max30102 fifo
if(un_min>aun_red_buffer[i])
un_min=aun_red_buffer[i]; //update signal min
if(un_max<aun_red_buffer[i])
un_max=aun_red_buffer[i]; //update signal max
pc.printf("red=");
pc.printf("%i", aun_red_buffer[i]);
pc.printf(", ir=");
pc.printf("%i\n\r", aun_ir_buffer[i]);
}
un_prev_data=aun_red_buffer[i];
//calculate heart rate and spo2 after first 500 samples (first 5 seconds of samples)
maxim_heart_rate_and_oxygen_saturation(aun_ir_buffer, n_ir_buffer_length, aun_red_buffer, &n_sp02, &ch_spo2_valid, &n_heart_rate, &ch_hr_valid);
//continuously taking samples from max30102. heart rate and spo2 are calculated every 1 second
while(1)
{
i=0;
un_min=0x3ffff;
un_max=0;
//dumping the first 100 sets of samples in the memory and shift the last 400 sets of samples to the top
for(i=100;i<500;i++)
{
aun_red_buffer[i-100]=aun_red_buffer[i];
aun_ir_buffer[i-100]=aun_ir_buffer[i];
//update the signal min and max
if(un_min>aun_red_buffer[i])
un_min=aun_red_buffer[i];
if(un_max<aun_red_buffer[i])
un_max=aun_red_buffer[i];
}
//take 100 sets of samples before calculating the heart rate.
for(i=400;i<500;i++)
{
un_prev_data=aun_red_buffer[i-1];
while(int.read()==1);
maxim_max30102_read_fifo((aun_red_buffer+i), (aun_ir_buffer+i));
if(aun_red_buffer[i]>un_prev_data)//just to determine the brightness of led according to the deviation of adjacent two ad data
{
f_temp=aun_red_buffer[i]-un_prev_data;
f_temp/=(un_max-un_min);
f_temp*=max_brightness;
n_brightness-=(int)f_temp;
if(n_brightness<0)
n_brightness=0;
}
else
{
f_temp=un_prev_data-aun_red_buffer[i];
f_temp/=(un_max-un_min);
f_temp*=max_brightness;
n_brightness+=(int)f_temp;
if(n_brightness>max_brightness)
n_brightness=max_brightness;
}
pwmled.write(1-(float)n_brightness/256);//pwm control led brightness
if(n_brightness<120)
led=1;
else
led=0;
//send samples and calculation result to terminal program through uart
pc.printf("red=");
pc.printf("%i", aun_red_buffer[i]);
pc.printf(", ir=");
pc.printf("%i", aun_ir_buffer[i]);
pc.printf(", hr=%i, ", n_heart_rate);
pc.printf("hrvalid=%i, ", ch_hr_valid);
pc.printf("spo2=%i, ", n_sp02);
pc.printf("spo2valid=%i\n\r", ch_spo2_valid);
}
maxim_heart_rate_and_oxygen_saturation(aun_ir_buffer, n_ir_buffer_length, aun_red_buffer, &n_sp02, &ch_spo2_valid, &n_heart_rate, &ch_hr_valid);
}
}
结果
将输出数据转成曲线
发表评论