#include <DHT.h>
#define DHTPIN 14
#define DHTTYPE DHT22
DHT dhtku(DHTPIN,DHTTYPE);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("Hello, ESP32!");
Serial.println("Just started on this one");
dhtku.begin();
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}
Loading
esp32-devkit-v1
esp32-devkit-v1