| 12345678910111213141516171819202122232425 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "freertos/FreeRTOS.h"
- #include "freertos/task.h"
- #include "freertos/semphr.h"
- #include "freertos/event_groups.h"
- #include "esp_system.h"
- #include "esp_log.h"
- #include "esp_err.h"
- #include "max30102.h"
- void app_main(void)
- {
- max30102_init();
- while (1)
- {
- get_temp();
- vTaskDelay(10000 / portTICK_RATE_MS);
- }
-
- }
|