We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bcf262 commit 6b210cbCopy full SHA for 6b210cb
examples/Dual Core Processing/BlinkRedLed/BlinkRedLed.ino
@@ -7,8 +7,8 @@ void setup() {
7
8
// the loop function runs over and over again forever
9
void loop() {
10
- digitalWrite(LEDR, HIGH); // turn the LED on (HIGH is the voltage level)
+ digitalWrite(LEDR, LOW); // turn the LED on (HIGH is the voltage level)
11
delay(200); // wait for a second
12
- digitalWrite(LEDR, LOW); // turn the LED off by making the voltage LOW
+ digitalWrite(LEDR, HIGH); // turn the LED off by making the voltage LOW
13
14
}
0 commit comments