// No variables
void setup()
{
pinMode(13, OUTPUT); //Pin 13 controls onboard LED and sets it ready for output
}
void loop()
{
digitalWrite (13, HIGH); //Turns on onboard LED (green)
delay(500); //Pauses by the value of flash in 1000th of seconds
digitalWrite (13, LOW); // Turns off onboard LED (green)
delay(500); // Pauses by the value of flash in 1000th of seconds
}