From 72bc657b9647f9dd679015d60956b9bc9a3289f5 Mon Sep 17 00:00:00 2001 From: Gustavoeklund01 Date: Sun, 19 Oct 2025 10:42:54 -0300 Subject: código dos sensores, luz, temperatura e humidade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- esp/DHT11.ino | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 esp/DHT11.ino (limited to 'esp/DHT11.ino') diff --git a/esp/DHT11.ino b/esp/DHT11.ino new file mode 100644 index 0000000..e0f0342 --- /dev/null +++ b/esp/DHT11.ino @@ -0,0 +1,26 @@ +#include "DHT.h" +#define DHTPIN 32 +#define DHTTYPE DHT11 + +DHT dht(DHTPIN, DHTTYPE); + +void setup() { + Serial.begin(115200); + dht.begin(); + Serial.println("Teste sensor DHT11 Temperatura e humidade"); +} +void loop(){ + float h = dht.readHumidity(); + float t = dht.readTemperature(); + + if (isnan(h) || isnan(t)){ + Serial.println("ERRO de leitura"); + return; + } + Serial.print("Humidade: "); + Serial.print(h); + Serial.print("% | Temperatura:"); + Serial.print(t); + Serial.println(" °C"); + delay(2000); +} \ No newline at end of file -- cgit v1.2.3