Tuesday, March 16, 2010

Task 10 - Blink at 10ms

/*
Blink

Turns on an LED on for half a second, then off for one second, repeatedly.

http://arduino.cc/en/Tutorial/Blink

based on an orginal by H. Barragan for the Wiring i/o board and Blink by David Cuartielles

*/

int ledPin = 13; // LED connected to digital pin 13

// The setup() method runs once, when the sketch starts

void setup() {
// initialize the digital pin as an output:
pinMode(ledPin, OUTPUT);
}

// the loop() method runs over and over again,
// as long as the Arduino has power

void loop()
{
digitalWrite(ledPin, HIGH); // set the LED on
delay(10);
digitalWrite(ledPin, LOW); // set the LED off
delay(10);
}

No comments:

Post a Comment