Hi Electric Water, Tried your suggestion, not working. When you say void loop() "put nothing in it " I assume you mean type "void loop() { } ". I have tried this where void loop currently sits, no go, I have shifted it to end of sketch, still no go. Where am I going wrong. Im sure theres a simple solution, Cheers
Chez7.
//Example 01 : Blinking LED
# define LED 13 // LED connected to
//digital pin 13
void setup ()
{
pinMode( LED, OUTPUT ) ; // Sets the digital pin as output.
}
void loop()
{
digitalWrite( LED, HIGH); //Turn the Led on
delay(4000); // Waits for
digitalWrite(LED, LOW); // Turns led off
delay (4000) ; // Waits for
digitalWrite( LED, HIGH); //Turn the Led on
delay(500); // Waits for
digitalWrite(LED, LOW); // Turns led off
delay(500); // Waits for
}