const int pot = 15;

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

void loop() {
  Serial.println(analogRead(pot));
}