Skip to main content
Knob-controlled variable resistor (linear potentiometer) The information below also applies to the slide potentiometer.

Pin names

GND
Ground
Ground
SIG
Analog Output
Output, connect to an analog input pin
VCC
Power
Supply voltage
Wokwi does not support full analog simulation, so you will get the same results even if you don’t connect the GND/VCC pins.This may change in the future, so it’s a good idea to connect GND/VCC anyway.

Attributes

value
string
default:"0"
Initial value of the potentiometer, between 0 and 1023

Using the Potentiometer in Arduino

Connect the SIG pin to one of Arduino’s analog input pins (A0, A1, …). Then use the analogRead() function to read the current value of the potentiometer. The following code example assumes that the potentiometer is connected to A0. It will read and print the current value of the potentiometer every 100 milliseconds:
void setup() {
  Serial.begin(115200);
  pinMode(A0, INPUT);
}

void loop() {
  int value = analogRead(A0);
  Serial.println(value);
  delay(100);
}
You can run the example on Wokwi. Observe how the plotter graph changes as you move the potentiometer’s knob.

Keyboard control

You can control the potentiometer with the keyboard:
  • Left / Right - fine movement
  • Page Up / Page Down - coarse movement
  • Home / End - move to the start (0) or the end (1023) of the range
You’ll need to click on the potentiometer before using these keyboard shortcuts.

Automation controls

The potentiometer can be controlled using Automation Scenarios. It exposes the following controls:
position
float
Moves the potentiometer to the given position, between 0.0 and 1.0
The following example set the potentiometer to the middle position:
  - set-control:
      part-id: pot1
      control: position
      value: 0.5

Simulator examples

  • Knob - Control a servo with a potentiometer
  • Plot - Plot potentiometer values in the Serial Plotter
  • Block shooter - Breakout style game

Build docs developers (and LLMs) love