int pot;

void setup() {
  pinMode(33, INPUT);
  Serial.begin(9600);
}

void loop() {
  pot = analogRead(33);
  Serial.println(pot);
  delay(1000);
}