Skip to content

Commit 6b210cb

Browse files
authored
Update BlinkRedLed.ino
1 parent 5bcf262 commit 6b210cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/Dual Core Processing/BlinkRedLed/BlinkRedLed.ino

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

88
// the loop function runs over and over again forever
99
void loop() {
10-
digitalWrite(LEDR, HIGH); // turn the LED on (HIGH is the voltage level)
10+
digitalWrite(LEDR, LOW); // turn the LED on (HIGH is the voltage level)
1111
delay(200); // wait for a second
12-
digitalWrite(LEDR, LOW); // turn the LED off by making the voltage LOW
12+
digitalWrite(LEDR, HIGH); // turn the LED off by making the voltage LOW
1313
delay(200); // wait for a second
1414
}

0 commit comments

Comments
 (0)