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 589da6f commit 26c5e76Copy full SHA for 26c5e76
libraries/CoreTesting/examples/example2_serial/example2_serial.ino
@@ -37,7 +37,7 @@ void loop() {
37
unsigned int cheeseCount = Serial.parseInt(); //That's a lot of potential cheese
38
39
//Print to second serial port
40
- for (unsigned int x ; x < cheeseCount ; x++)
+ for (unsigned int x = 0; x < cheeseCount ; x++)
41
{
42
Serial1.println("Cheese!");
43
}
0 commit comments