int potPin = 33;

int potValue;

void setup() {
  Serial.begin(115200);
  
  pinMode(potPin, INPUT);
}

void loop() {
  potValue = analogRead(potPin);

  Serial.println(potValue);
}
$abcdeabcde151015202530fghijfghij