int pot; void setup() { Serial.begin(9600); } void loop() { pot = analogRead(A1); Serial.println(pot); delay(10); }