File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
build/shared/examples/02.Digital/BlinkWithoutDelay Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
/* Blink without Delay
2
2
3
- Turns on and off a light emitting diode(LED) connected to a digital
3
+ Turns on and off a light emitting diode (LED) connected to a digital
4
4
pin, without using the delay() function. This means that other code
5
5
can run at the same time without being interrupted by the LED code.
6
6
@@ -28,7 +28,7 @@ const int ledPin = 13; // the number of the LED pin
28
28
// Variables will change :
29
29
int ledState = LOW; // ledState used to set the LED
30
30
31
- // Generally, you shuould use "unsigned long" for variables that hold time
31
+ // Generally, you should use "unsigned long" for variables that hold time
32
32
// The value will quickly become too large for an int to store
33
33
unsigned long previousMillis = 0 ; // will store last time LED was updated
34
34
You can’t perform that action at this time.
0 commit comments