2010-07-27 01:02:40 +02:00
|
|
|
/*
|
|
|
|
Blink
|
|
|
|
Turns on an LED on for one second, then off for one second, repeatedly.
|
|
|
|
|
|
|
|
This example code is in the public domain.
|
|
|
|
*/
|
|
|
|
|
2010-08-15 16:30:34 +02:00
|
|
|
void setup() {
|
2010-09-04 21:47:59 +02:00
|
|
|
// initialize the digital pin as an output.
|
|
|
|
// Pin 13 has an LED connected on most Arduino boards:
|
2010-07-27 01:02:40 +02:00
|
|
|
pinMode(13, OUTPUT);
|
|
|
|
}
|
|
|
|
|
2010-08-15 16:30:34 +02:00
|
|
|
void loop() {
|
2010-07-27 01:02:40 +02:00
|
|
|
digitalWrite(13, HIGH); // set the LED on
|
|
|
|
delay(1000); // wait for a second
|
|
|
|
digitalWrite(13, LOW); // set the LED off
|
|
|
|
delay(1000); // wait for a second
|
|
|
|
}
|