//Here we'll read an analog value and output it to the Serial Monitor int inputValue=0; //declare a variable to hold our inut value and give it an initial value of 0 void setup() { Serial.begin(57600); } void loop() { inputValue=analogRead(0); //read analog value on pin 1 and store it in "inputValue" variable Serial.println(inputValue); //output a 10bit value //delay(100); }