Skip to content

Commit 33dddb8

Browse files
authored
Merge pull request #94 from per1234/builtin-led-behavior
Adjust comments to avoid assumption of on-board LED circuit configuration
2 parents 0122323 + 6a2482f commit 33dddb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/01.Basics/Blink/Blink.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ void setup() {
3030

3131
// the loop function runs over and over again forever
3232
void loop() {
33-
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
33+
digitalWrite(LED_BUILTIN, HIGH); // change state of the LED by setting the pin to the HIGH voltage level
3434
delay(1000); // wait for a second
35-
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
35+
digitalWrite(LED_BUILTIN, LOW); // change state of the LED by setting the pin to the LOW voltage level
3636
delay(1000); // wait for a second
3737
}

0 commit comments

Comments
 (0)