void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(12, OUTPUT);
}
void loop() {
digitalWrite(12, HIGH);
delay(10000);
digitalWrite(12, LOW);
delay(5000); // this speeds up the simulation
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(12, OUTPUT);
}
void loop() {
digitalWrite(12, HIGH);
delay(10000);
digitalWrite(12, LOW);
delay(5000); // this speeds up the simulation
}