From 650dc075a4b3db6f44fedeedd5f388b30d65dc3e Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Sat, 26 Sep 2009 16:54:50 +0000 Subject: [PATCH] Fixing small typo in for-loop example. --- .../examples/Control/ForLoopIteration/ForLoopIteration.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);