#define LED 4
void setup() {
pinMode(LED, OUTPUT); // LED pin as input
}
void loop() {
digitalWrite(LED, HIGH); //turn the led off
// turn the led on; this is becausd it is active low on
delay(1000); // this speeds up the simulation
digitalWrite(LED, LOW);
delay(1000);
}