summaryrefslogtreecommitdiff
path: root/esp/src/dht11.cpp
diff options
context:
space:
mode:
authorMatheus <matheus.guedes.mg.m@gmail.com>2025-10-28 21:08:06 -0300
committerMatheus <matheus.guedes.mg.m@gmail.com>2025-10-28 21:08:06 -0300
commit0c5b080efac82b1d196e3dde00e5950c97ecbb68 (patch)
tree9cab7ac15860270014c45f76c661d50e5be689f2 /esp/src/dht11.cpp
parent7ccab61c22fafb3bb9fa5470ff8cb46217111fe4 (diff)
feat:leitura assíncrona de leitores
Diffstat (limited to 'esp/src/dht11.cpp')
-rw-r--r--esp/src/dht11.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/esp/src/dht11.cpp b/esp/src/dht11.cpp
deleted file mode 100644
index 9900363..0000000
--- a/esp/src/dht11.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#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();
-}