max30102.h 403 B

123456789101112131415161718192021222324
  1. #ifndef __I2C_MAX30102_H__
  2. #define __I2C_MAX30102_H__
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include "freertos/FreeRTOS.h"
  7. #include "freertos/task.h"
  8. #include "freertos/semphr.h"
  9. #include "freertos/event_groups.h"
  10. #include "esp_system.h"
  11. #include "esp_log.h"
  12. #include "esp_err.h"
  13. #include "driver/i2c.h"
  14. #include "driver/gpio.h"
  15. void max30102_init();
  16. void get_temp();
  17. #endif