Difference between revisions of "Rotary Potentiometer Module"

From LinkSprite Playgound
Jump to: navigation, search
(Introduction)
(Introduction)
Line 2: Line 2:
 
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.  
 
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.  
  
[[File:N26DM WITHOUT PACKAGED FRONT.jpg|64opx]]
+
[[File:N26DM WITHOUT PACKAGED FRONT.jpg|640px]]
  
 
[[File:N26DM WITHOUT PACKAGED BACK.jpg|640px]]
 
[[File:N26DM WITHOUT PACKAGED BACK.jpg|640px]]

Revision as of 01:08, 7 September 2015

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.

640px

640px

N26DM PACKAGED FRONT.jpg

N26DM PACKAGED BACK.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