void setup() {
// put your setup code here, to run once:
// initialize digital pin esp:D18 as an output.
pinMode(18, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(18, HIGH);
delay(3000); // this speeds up the simulation
digitalWrite(18, LOW);
delay(2000);
}