summaryrefslogtreecommitdiffstats
path: root/esp32/main/dht.h
blob: 7b19d27660223bca4fd78affb12be7943db951cc (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DHT_H
#define DHT_H

void dht_init(void);

void dht_temp_get(char s[7]);

void dht_humid_get(char s[6]);

#endif /* DHT_H */