MOISTURE — ESP32 simulation

An interactive ESP32 circuit simulation you can run free in your browser on Velxio, by mashiyo272.

Components

Sketch code

const int buzzer = 14;

void setup() {
  pinMode(buzzer, OUTPUT);
}

void loop() {
  digitalWrite(buzzer, HIGH);
  delay(1000);
  digitalWrite(buzzer, LOW);
  delay(1000);
}

More projects by mashiyo272