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

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