From 4008253dfd2005da102f6da06389268ecef152f6 Mon Sep 17 00:00:00 2001 From: Gustavoeklund01 Date: Mon, 27 Oct 2025 19:15:23 -0300 Subject: conciliação dos sensores do esp32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- esp/DHT11.ino | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 esp/DHT11.ino (limited to 'esp/DHT11.ino') diff --git a/esp/DHT11.ino b/esp/DHT11.ino deleted file mode 100644 index e0f0342..0000000 --- a/esp/DHT11.ino +++ /dev/null @@ -1,26 +0,0 @@ -#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