ESP32_DHT_Node/main/include/app_dht.h
Yilin Sun dfb86f939c
Updated IDF, connect to TB.
Signed-off-by: Yilin Sun <imi415@imi.moe>
2023-05-21 18:43:13 +08:00

9 lines
160 B
C

#ifndef APP_DHT_H
#define APP_DHT_H
#include "esp_system.h"
esp_err_t app_dht_init(void);
esp_err_t app_dht_read(float *temperature, float *humidity);
#endif