int LEDpin=13;
void setup() {
pinMode(LEDpin,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
digitalWrite(LEDpin,HIGH);
delay(1000);
digitalWrite(LEDpin,LOW);
delay(1);
delay(1000);
// put your main code here, to run repeatedly:
}