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