1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-02 13:24:12 +01:00
Arduino/build/shared/examples/01.Basics/Blink/Blink.ino

25 lines
710 B
Arduino
Raw Normal View History

/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
2012-04-16 13:58:55 +02:00
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
2012-04-16 13:58:55 +02:00
// the setup routine runs once when you press reset:
2010-08-15 16:30:34 +02:00
void setup() {
// initialize the digital pin as an output.
2012-04-16 13:58:55 +02:00
pinMode(led, OUTPUT);
}
2012-04-16 13:58:55 +02:00
// the loop routine runs over and over again forever:
2010-08-15 16:30:34 +02:00
void loop() {
2012-04-16 13:58:55 +02:00
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}