#include <DHT.h>
int pinoDht = 4;
float temp,umid;
int tempODHT = 0;
DHT (pinoDht,
void setup() {
dnt.begin();
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}