|
1 |
| -// demo of Grove - Starter V2.0 |
2 |
| -// Loovee 2013-3-10 |
3 |
| -// this demo will show you how to use Grove - Button to control a LED |
4 |
| -// when the button was pressed, the led will on |
5 |
| -// otherwise led off |
6 |
| -// Grove - Button connect to D3 |
7 |
| -// Grove - LED connect to D7 |
| 1 | +// Demo for Grove - Starter V2.0 |
| 2 | +// Author: Loovee 2013-3-10 |
8 | 3 |
|
9 |
| -const int pinButton = 3; // pin of button define here |
10 |
| -const int pinLed = 7; // pin of led define here |
| 4 | +// Uses the Grove - Button to control the Grove - LED. |
| 5 | +// Connect the Grove - Button to the socket marked D3 |
| 6 | +// Connect the Grove - LED to D7 |
| 7 | + |
| 8 | +// Defines the pins to which the button and LED are connected. |
| 9 | +const int pinButton = 3; |
| 10 | +const int pinLed = 7; |
11 | 11 |
|
12 | 12 | void setup()
|
13 | 13 | {
|
14 |
| - pinMode(pinButton, INPUT); // set button INPUT |
15 |
| - pinMode(pinLed, OUTPUT); // set led OUTPUT |
| 14 | + // Configure the button's pin for input signals. |
| 15 | + pinMode(pinButton, INPUT); |
| 16 | + |
| 17 | + // Configure the LED's pin for output. |
| 18 | + pinMode(pinLed, OUTPUT); |
16 | 19 | }
|
17 | 20 |
|
18 | 21 | void loop()
|
19 | 22 | {
|
20 |
| - if(digitalRead(pinButton)) // when button is pressed |
| 23 | + if(digitalRead(pinButton)) |
21 | 24 | {
|
22 |
| - digitalWrite(pinLed, HIGH); // led on |
| 25 | + // When the button is pressed, turn the LED on. |
| 26 | + digitalWrite(pinLed, HIGH); |
23 | 27 | }
|
24 | 28 | else
|
25 | 29 | {
|
| 30 | + // Otherwise, turn the LED off. |
26 | 31 | digitalWrite(pinLed, LOW);
|
27 | 32 | }
|
28 | 33 |
|
29 | 34 | delay(10);
|
30 | 35 | }
|
| 36 | + |
0 commit comments