// Entradas - Salidas (pines)
const int potPin = A0;     
const int sampleTime = 50;

void setup() {
  Serial.begin(9600); // Para imprimir valores en la terminal
}

void loop() {
  // Lectura inicial del boton
  int potVal = analogRead(potPin); // devuelve 0 - 1023 (10 bit ADC)
  float potVoltage = (potVal / 1023.0) * 5;
  Serial.print(potVal);        // Valor ADC
  Serial.print(" - ");
  Serial.println(potVoltage);      // Voltaje
  delay(sampleTime);  
}
$abcdeabcde151015202530fghijfghij