From a6022df4221bc02892607466866513e88a45e121 Mon Sep 17 00:00:00 2001 From: mdxtinkernick Date: Mon, 11 Feb 2013 21:41:30 +0000 Subject: [PATCH] Update build/shared/examples/05.Control/Arrays/Arrays.ino removed redundant thisPin declaration in setup --- build/shared/examples/05.Control/Arrays/Arrays.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/build/shared/examples/05.Control/Arrays/Arrays.ino b/build/shared/examples/05.Control/Arrays/Arrays.ino index f5154770c..d1cdea8c8 100644 --- a/build/shared/examples/05.Control/Arrays/Arrays.ino +++ b/build/shared/examples/05.Control/Arrays/Arrays.ino @@ -27,7 +27,6 @@ int ledPins[] = { int pinCount = 6; // the number of pins (i.e. the length of the array) void setup() { - int thisPin; // the array elements are numbered from 0 to (pinCount - 1). // use a for loop to initialize each pin as an output: for (int thisPin = 0; thisPin < pinCount; thisPin++) {