diff --git a/build/shared/examples/Control/ForLoopIteration/ForLoopIteration.pde b/build/shared/examples/Control/ForLoopIteration/ForLoopIteration.pde index ea7ed0fcc..4fd745d1e 100644 --- a/build/shared/examples/Control/ForLoopIteration/ForLoopIteration.pde +++ b/build/shared/examples/Control/ForLoopIteration/ForLoopIteration.pde @@ -26,7 +26,7 @@ void setup() { void loop() { // loop from the lowest pin to the highest: - for (int thisPin = 0; thisPin < 8; thisPin++) { + for (int thisPin = 2; thisPin < 8; thisPin++) { // turn the pin on: digitalWrite(thisPin, HIGH); delay(timer);