Difference between revisions of "Rotary Potentiometer Module"

From LinkSprite Playgound
Jump to: navigation, search
(Schematics)
(Features)
Line 6: Line 6:
 
== Features ==
 
== Features ==
  
Dimensions: 28.0×25.0×19.0mm
+
Dimensions: 25.0×25.0×18.8mm
  
 
Net weight: 4.5g
 
Net weight: 4.5g
 +
 +
== Dimension ==
 +
 +
[[File:rotary potentiometer dimension.jpg]]
  
 
== Schematics ==
 
== Schematics ==

Revision as of 08:26, 17 June 2014

Introduction

The Linker Rotary Potentiometer Module produces analog output between 0 and Vcc (5V DC with Arduino) on its D1 connector. The D2 connector is not used. The angular range is 300 degrees with a linear change in value. The resistance value is 10kΩ, perfect for Arduino use.

Rotary potentionmeter.jpg

Features

Dimensions: 25.0×25.0×18.8mm

Net weight: 4.5g

Dimension

Rotary potentiometer dimension.jpg

Schematics

Application Ideas

test <syntaxhighlight lang="c"> int adcPin = A0; // select the input pin for the potentiometer int ledPin = 5; // select the pin for the LED int adcIn = 0; // variable to store the value coming from the sensor

void setup() {

 Serial.begin(9600);        // init serial to 9600b/s
 pinMode(ledPin, OUTPUT);    // set ledPin to OUTPUT
 Serial.println("Rotary Potentiometer Test Code!!");

}

void loop() {

 // read the value from the sensor:
 adcIn = analogRead(adcPin);
 if(adcIn >= 500)  digitalWrite(ledPin,HIGH);  // if adc in > 500, led light
 else digitalWrite(ledPin, LOW);
 Serial.println(adcIn);
 delay(100);

} </syntaxhighlight>

Rotary link.jpg

How to buy

Here to buy Rotary Potentiometer Module on store