void setup() {
//Intializing pin
pinMode(4, OUTPUT);
}
void loop() {
//HIGH mode
digitalWrite(4, HIGH);
delay(1000);//1 Second delay
digitalWrite(4, LOW);
delay(1000);//1 Second dealy
// put your main code here, to run repeatedly:
// this speeds up the simulation
}