We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0122323 + 6a2482f commit 33dddb8Copy full SHA for 33dddb8
examples/01.Basics/Blink/Blink.ino
@@ -30,8 +30,8 @@ void setup() {
30
31
// the loop function runs over and over again forever
32
void loop() {
33
- digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
+ digitalWrite(LED_BUILTIN, HIGH); // change state of the LED by setting the pin to the HIGH voltage level
34
delay(1000); // wait for a second
35
- digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
+ digitalWrite(LED_BUILTIN, LOW); // change state of the LED by setting the pin to the LOW voltage level
36
37
}
0 commit comments