/**
ESP32 + DHT22 Example for Wokwi
https://wokwi.com/arduino/projects/322410731508073042
*/
const int LED = 15;
const int Taster1 = 19;
const int Taster2 = 21;
void setup() {
Serial.begin(115200);
Serial.println("Wilkommen!");
pinMode(Taster1, INPUT_PULLUP);
pinMode(Taster2, INPUT_PULLUP);
pinMode(LED, OUTPUT);
}
void loop() {
}