All tutorials

2 · Inputs & sensors

Read a potentiometer

Beginner12 min

Goal

Print the analog value of A0 on the serial monitor.

Why it matters

The 10-bit analog-to-digital converter turns a voltage into a number from 0 to 1023.

Steps

  1. 01Add a potentiometer on A0.
  2. 02Serial.begin(9600) inside setup().
  3. 03analogRead(A0) inside loop().
  4. 04Print it with Serial.println().

This tutorial runs inside the Circuitly simulator: your wiring and your code are checked automatically at every step.

Next tutorials