summaryrefslogtreecommitdiff
path: root/esp/src/dht11.cpp
diff options
context:
space:
mode:
authorGustavoeklund01 <eklundgu@gmail.com>2025-10-27 20:28:29 -0300
committerGustavoeklund01 <eklundgu@gmail.com>2025-10-27 20:28:29 -0300
commit7ccab61c22fafb3bb9fa5470ff8cb46217111fe4 (patch)
tree65a629f9f99277358e3aefc19fc43a057e079dc2 /esp/src/dht11.cpp
parentbe7952f3585fe895a3309a19e14cd93f89c3ce1b (diff)
outros códigos
Diffstat (limited to 'esp/src/dht11.cpp')
-rw-r--r--esp/src/dht11.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/esp/src/dht11.cpp b/esp/src/dht11.cpp
index e69de29..9900363 100644
--- a/esp/src/dht11.cpp
+++ b/esp/src/dht11.cpp
@@ -0,0 +1,18 @@
+#include "DHT.h"
+#include "dht11.h"
+
+#define DHTPIN 32
+#define DHTTYPE DHT11
+DHT dht(DHTPIN, DHTTYPE);
+
+void setupDHT11() {
+ dht.begin();
+}
+
+float lerTemperaturaDHT11() {
+ return dht.readTemperature();
+}
+
+float lerUmidadeDHT11() {
+ return dht.readHumidity();
+}