Axiometa
Potentiometer
Potentiometer
SKU:AX22-0004
Low stock: 10 left
Regular price
$2.99
Regular price
Sale price
$2.99
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability

Technical Details
Pinout
Arduino Example Snippet
#define POT_PIN 1
void setup() {
Serial.begin(9600);
}
void loop() {
int potValue = analogRead(POT_PIN);
Serial.print("Potentiometer Value: ");
Serial.println(potValue);
delay(10);
}