How to Post Code in the Forum

Agreed!

//NOT THIS!
void setup(){
Serial.begin(9600);
}

//EITHER THIS
void setup(){
  Serial.begin(9600);
}

//OR THIS
void setup(){
Serial.begin(9600);
}

If the code is very long you can link to a copy paste from http://arduino.pastebin.com/
Like this: http://arduino.pastebin.com/f7cd60d79

:slight_smile: