Mark Woodward wrote:
> My arduino came in the mail today!
Do you have something in mind to do with it? What's the first project?
> void loop() {
> digitalWrite(13, HIGH);
> delay(1000);
> digitalWrite(13, LOW);
> delay(1000);
> }
You made a 0.5 Hz square wave? :-)
-Tom