#include <DHTesp.h>
DHTesp dhtSensor;
TempAndHumidity data;
const int DHT_PIN = 25;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
dhtSensor.setup(DHT_PIN,DHTesp::DHT22);
}
void loop() {
data = dhtSensor.getTempAndHumidity();
Serial.println("Humidity : " + String(data.humidity));
Serial.println("Temperature : " + String(data.temperature));
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}