int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay(1000);
digitalWrite(ledPin, LOW);
delay(1000);
}
.................................................Full Stops (if needed).................................................
The above code seemed to work after the initial problem with the port selection, but now I would seem unable to change the low and high periods? from what I initially set them at, around:- low 10 secs and high 1 "sec" (thats short for seconds, GM) Any Ideas as to what I may be doing wrong? Other than grammatical errors? would be most gratiously recieved. Thanks in anticipation.