void setup() {
pinMode(12, OUTPUT);
}
void loop() {
digitalWrite(12, HIGH);
delay(2000); // this speeds up the simulation
digitalWrite(12, LOW);
delay(2000);
}
void setup() {
pinMode(12, OUTPUT);
}
void loop() {
digitalWrite(12, HIGH);
delay(2000); // this speeds up the simulation
digitalWrite(12, LOW);
delay(2000);
}