Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 743ef7c

Browse files
committed
Improves the documentation for Grove_Button.
1 parent 3a1f67f commit 743ef7c

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

Grove_Button/Grove_Button.ino

+19-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,36 @@
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
83

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;
1111

1212
void setup()
1313
{
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);
1619
}
1720

1821
void loop()
1922
{
20-
if(digitalRead(pinButton)) // when button is pressed
23+
if(digitalRead(pinButton))
2124
{
22-
digitalWrite(pinLed, HIGH); // led on
25+
// When the button is pressed, turn the LED on.
26+
digitalWrite(pinLed, HIGH);
2327
}
2428
else
2529
{
30+
// Otherwise, turn the LED off.
2631
digitalWrite(pinLed, LOW);
2732
}
2833

2934
delay(10);
3035
}
36+

0 commit comments

Comments
 (0)