excuse me
arduino reference states I can jump to a label using the GOTO statement
http://www.arduino.cc/en/Reference/Goto
I try:
for(byte r = 0; r < 255; r++){
for(byte g = 255; g > -1; g--){
for(byte b = 0; b < 255; b++){
if (analogRead(0) > 250){ goto bailout;}
// more statements ...
}
}
}
bailout:
but I give this error
In function 'void loop()':
error: expected primary-expression before '}' token
Using "Arduino - 0012 Alpha"
what is the problem??????? :-?