Do you have any suggestions as to how I could clean up the code?
Well you could try this:-
void setup() {
Serial.begin(9600);
}
int sensorValue;
void loop() {
//to print results of pot1
for(int i=0; i<6; i++){
sensorValue = analogRead(i)>> 4;
Serial.print("pot");
Serial.print(i);
Serial.print(" ");
Serial.print(sensorValue);
Serial.print("\t output = ");
Serial.println(outputValue);
}
Serial.println(" ");
}
Maybe it was the a baud rate issue cause I was getting random numbers in no particular order.
Do you mean numbers, that is the text bit was printing out fine? If so you haven't connected the pots up correctly.
All I really care about is the serial comes out with a label
No you don't / should not mean that. You should be keen to find out what you are doing.