void setup() {
// put your setup code here, to run once:
pinMode(26, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(26, HIGH);
delay(400); // this speeds up the simulation
digitalWrite(26, LOW);
delay(400);
}