#define LED 2
void setup() {
Serial.begin(9600);
pinMode (2,OUTPUT); 
} 
void loop(){
digitalWrite (LED,1); // turn the LED on ( HIGH is the voltage level ) 
delay(1000); // wait for a second 
digitalWrite(LED,0) ; // turn the LED off by making the voltage LOW
delay(1000); // wait for a second 
}