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