Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build/shared/examples/05.Control/Arrays/Arrays.ino #1277

Merged
merged 1 commit into from
Feb 22, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build/shared/examples/05.Control/Arrays/Arrays.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down