//Here we'll read two analog values and output them to the Serial Monitor int inputValueA=0; //declare a variable to hold our inut value and give it an initial value of 0 int inputValueB=0; //declare a variable to hold our inut value and give it an initial value of 0 void setup() { Serial.begin(57600); } void loop() { inputValueA=analogRead(0); //read analog value inputValueB=analogRead(1); //read analog value Serial.print(inputValueA); //output a 10bit value Serial.print(" | "); Serial.print(inputValueB); //output a 10bit value Serial.print("\n"); //put characters on a new line (same as println()) <-- makes things easier to read delay(10); }