summaryrefslogtreecommitdiffstats
path: root/esp32/main/dht.h
diff options
context:
space:
mode:
Diffstat (limited to 'esp32/main/dht.h')
-rw-r--r--esp32/main/dht.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/esp32/main/dht.h b/esp32/main/dht.h
new file mode 100644
index 0000000..7b19d27
--- /dev/null
+++ b/esp32/main/dht.h
@@ -0,0 +1,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 */