Offline
Newbie
Karma: 0
Posts: 13
|
 |
« on: February 12, 2013, 05:02:43 am » |
Hello I am new to Arduino and I need some help.
I get the error message : sketch_feb12a.ino: In function 'void loop()': sketch_feb12a:34: error: expected `)' before ';' token sketch_feb12a:34: error: expected `;' before ')' token sketch_feb12a:41: error: expected `)' before ';' token sketch_feb12a:41: error: expected `;' before ')' token sketch_feb12a:48: error: expected `)' before ';' token sketch_feb12a:48: error: expected `;' before ')' token sketch_feb12a:55: error: expected `)' before ';' token sketch_feb12a:55: error: expected `;' before ')' token
to the following code:
int timer = 1000; int i = 1;
void setup() { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { pinMode(thisPin1, OUTPUT); pinMode(thisPin2, OUTPUT); pinMode(thisPin3, OUTPUT); pinMode(thisPin4, OUTPUT); pinMode(51, OUTPUT); pinMode(52, OUTPUT); pinMode(53, OUTPUT); }}
void loop() { while (i<2) {i++; { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { digitalWrite(52, HIGH); delay(3000); digitalWrite(52, LOW); digitalWrite(thisPin1, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53; LOW); delay(timer); digitalWrite(thisPin1, LOW); digitalWrite(thisPin2, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53; LOW); delay(timer); digitalWrite(thisPin2, LOW);
digitalWrite(thisPin3, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53; LOW); delay(timer); digitalWrite(thisPin3, LOW);
digitalWrite(thisPin4, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53; LOW); delay(timer); digitalWrite(thisPin4, LOW); }}}}
I can not find the problem.
Thanks for your help!!! # S
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 137
Posts: 19001
I don't think you connected the grounds, Dave.
|
 |
« Reply #1 on: February 12, 2013, 05:06:37 am » |
Can you tell us what you're trying to do? I can't really see a reason for that degree of loop nesting. digitalWrite(53; LOW); Look again.
|
|
|
|
« Last Edit: February 12, 2013, 05:10:02 am by AWOL »
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 13
|
 |
« Reply #2 on: February 12, 2013, 05:09:23 am » |
I am trying to run 4 rows of led lamps. Each led should light up for 1 second and for each led a photo should be taken and i want to control the shutter of the camera differently at each row.
THANK YOU!
S
|
|
|
|
|
Logged
|
|
|
|
|
Malaysia
Offline
Sr. Member
Karma: 7
Posts: 385
|
 |
« Reply #3 on: February 12, 2013, 05:10:08 am » |
post your code with using the code tag function ok btw your code, you are using all your pin in maybe a mega i think you just use ; in what should be , int timer = 1000; int i = 1;
void setup() { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { pinMode(thisPin1, OUTPUT); pinMode(thisPin2, OUTPUT); pinMode(thisPin3, OUTPUT); pinMode(thisPin4, OUTPUT); pinMode(51, OUTPUT); pinMode(52, OUTPUT); pinMode(53, OUTPUT); }}
void loop() { while (i<2) {i++; { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { digitalWrite(52, HIGH); delay(3000); digitalWrite(52, LOW); digitalWrite(thisPin1, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin1, LOW); digitalWrite(thisPin2, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin2, LOW);
digitalWrite(thisPin3, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin3, LOW);
digitalWrite(thisPin4, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin4, LOW); }}}}
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 13
|
 |
« Reply #4 on: February 12, 2013, 05:15:26 am » |
Yes. I am using a Mega Arduino.
Sorry, I did not understand what I should change.
Thanks a lot for your help!!!
S
|
|
|
|
|
Logged
|
|
|
|
|
East Anglia (UK)
Offline
Edison Member
Karma: 47
Posts: 1381
May all of your blinks be without delay
|
 |
« Reply #5 on: February 12, 2013, 05:16:27 am » |
The errors are being caused by lines like this digitalWrite(53; LOW); I am sure that you can see what is wrong Using the Tools/Autotidy in the IDE made them stand out immediately, and the error line is highlighted by the compiler anyway.
|
|
|
|
|
Logged
|
|
|
|
|
Malaysia
Offline
Sr. Member
Karma: 7
Posts: 385
|
 |
« Reply #6 on: February 12, 2013, 05:17:56 am » |
i gave you the edited version ....
|
|
|
|
|
Logged
|
|
|
|
|
Malaysia
Offline
Sr. Member
Karma: 7
Posts: 385
|
 |
« Reply #7 on: February 12, 2013, 05:18:44 am » |
int timer = 1000; int i = 1;
void setup() { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { pinMode(thisPin1, OUTPUT); pinMode(thisPin2, OUTPUT); pinMode(thisPin3, OUTPUT); pinMode(thisPin4, OUTPUT); pinMode(51, OUTPUT); pinMode(52, OUTPUT); pinMode(53, OUTPUT); } }
void loop() { while (i<2) { i++; { for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { digitalWrite(52, HIGH); delay(3000); digitalWrite(52, LOW);
digitalWrite(thisPin1, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin1, LOW);
digitalWrite(thisPin2, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin2, LOW);
digitalWrite(thisPin3, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin3, LOW);
digitalWrite(thisPin4, HIGH); digitalWrite(53, HIGH); delay(100); digitalWrite(53, LOW); delay(timer); digitalWrite(thisPin4, LOW); } } } }
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 13
|
 |
« Reply #8 on: February 12, 2013, 05:18:56 am » |
Oh, I see. Thank you very much. It was highlighted, but i did not see the error.
S
|
|
|
|
|
Logged
|
|
|
|
|
East Anglia (UK)
Offline
Edison Member
Karma: 47
Posts: 1381
May all of your blinks be without delay
|
 |
« Reply #9 on: February 12, 2013, 05:30:03 am » |
How many for loops are there in this code ? for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { pinMode(thisPin1, OUTPUT); pinMode(thisPin2, OUTPUT); pinMode(thisPin3, OUTPUT); pinMode(thisPin4, OUTPUT); pinMode(51, OUTPUT); pinMode(52, OUTPUT); pinMode(53, OUTPUT); } Answers from the OP only, please.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 13
|
 |
« Reply #10 on: February 12, 2013, 06:13:00 am » |
I do have four rows of leds. And the shutter has to be controlled different at every row. Is the code wrong? There is no more error code.
Thanks,
S
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
UK
Offline
Brattain Member
Karma: 137
Posts: 19001
I don't think you connected the grounds, Dave.
|
 |
« Reply #11 on: February 12, 2013, 06:15:47 am » |
There is no more error code That only means that the program is syntactically correct, and that the compiler has generated code for the code as written. It does not necessarily mean that the code will do what you intended. Does the code do what you intended?
|
|
|
|
|
Logged
|
Pete, it's a fool looks for logic in the chambers of the human heart.
|
|
|
|
East Anglia (UK)
Offline
Edison Member
Karma: 47
Posts: 1381
May all of your blinks be without delay
|
 |
« Reply #12 on: February 12, 2013, 06:35:42 am » |
The code is not exaclty wrong, more that it is unusual and unnecessary. Try this, which as you will see is derived from your code. void setup() { int counter =1; Serial.begin(9600);
for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { counter++; } Serial.println(counter); }
void loop() {} You may be surprised by the number of for loops that have been run. Explain in simple terms what you want those for loops to do.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 13
|
 |
« Reply #13 on: February 12, 2013, 06:55:41 am » |
I want to run 4 rows of leds and to every led i want to take a picture. And the shutter time should be different in every row. Anyway. My code does not work properly.
|
|
|
|
|
Logged
|
|
|
|
|
Seattle, WA USA
Offline
Brattain Member
Karma: 311
Posts: 35470
Seattle, WA USA
|
 |
« Reply #14 on: February 12, 2013, 07:18:21 am » |
My code does not work properly. Because it is crap, as others have tried to point out. If you were to use curly braces for every for loop, you'd see that. It is the nesting of the for loops that is wrong. This is what you want: for (int thisPin1 = 1; thisPin1 < 13; thisPin1++) { pinMode(thisPin1, OUTPUT); } for (int thisPin2 = 13; thisPin2 < 25; thisPin2++) { pinMode(thisPin2, OUTPUT); } for (int thisPin3 = 24; thisPin3 < 38; thisPin3++) { pinMode(thisPin3, OUTPUT); } for (int thisPin4 = 37; thisPin4 < 43; thisPin4++) { pinMode(thisPin4, OUTPUT); } Now, what is the loop() function supposed to do? The nested loops there are probably wrong, too.
|
|
|
|
|
Logged
|
|
|
|
|
|