1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Merge pull request #1277 from mdxtinkernick/patch-1

Update build/shared/examples/05.Control/Arrays/Arrays.ino
This commit is contained in:
Cristian Maglie 2013-02-22 05:14:35 -08:00
commit 32fbb3183c

View File

@ -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++) {