ESP32_DHT_Node/main/include/app_dht.h

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