int sensorValue = 0; // value read from the pot
void setup() {
Serial.begin(9600);
}
void loop() {
// read the analog in value: \t
sensorValue = analogRead(A0);
// print the results to the Serial Monitor:
Serial.print("sensor = ");
Serial.println(sensorValue);
delay(200);
}