-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblink.cpp
42 lines (28 loc) · 1.02 KB
/
blink.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
The circuit:
* LED connected from digital pin 13 to ground.
* Note: On most Arduino boards, there is already an LED on the board
connected to pin 13, so you don't need any extra components for this example.
Created 1 June 2005
By David Cuartielles
http://arduino.cc/en/Tutorial/Blink
based on an orginal by H. Barragan for the Wiring i/o board
*/
#include <WProgram.h>
int ledPin = 13; // LED connected to digital pin 13
// The setup() method runs once, when the sketch starts
void setup(void) {
// 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(void)
{
digitalWrite(ledPin, HIGH); // set the LED on
delay(4000); // wait for a second
digitalWrite(ledPin, LOW); // set the LED off
delay(500); // wait for a second
}