#include <LiquidCrystal_I2C.h>
LiquidCrystal_12C lcd(0x27, 16, 2);
#include <DHTesp.h>
#define led1 2
#define led2 4
#define led3 5
const int DHT_PIN = 15;
DHTesp dhtSensor;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
dhtSensor.setup(DHT_PIN, DHTesp::DHT22);
lcd.init();
lcd.backlight();
lcd.setCursor(2,0);
lcd.print
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}