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