int pinpot = 15;
int valpot;

void setup() {
  Serial.begin(115200);
}

void loop() {
  valpot = analogRead(pinpot);
  Serial.println(valpot);
  
}