/**
Actividad 1 Sensores
*/
#include "DHTesp.h"
const int DHT_PIN = 13;
const int LED_T = 14;
const int LED_H = 15;
const int UMB_T = 26;
const int UMB_H = 27;
DHTesp dhtSensor;
void setup() {
Serial.begin(115200);
dhtSensor.setup(DHT_PIN, DHTesp::DHT22);
}
void loop() {
TempAndHumidity data = dhtSensor.getTempAndHumidity();
Serial.println("Temp: " + String(data.temperature, 2) + "°C");
Serial.println("Humidity: " + String(data.humidity, 1) + "%");
Serial.println("---");
delay(2000); // Wait for a new reading from the sensor (DHT22 has ~0.5Hz sample rate)
}