Ks0109 keyestudio EASY plug Analog Rotation Sensor: Difference between revisions
Jump to navigation
Jump to search
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) |
||
Line 42: | Line 42: | ||
==Buy from == | ==Buy from == | ||
'''Official Website''' | |||
http://www.keyestudio.com/keyestudio-easy-plug-analog-rotation-sensor-module-for-arduino.html | http://www.keyestudio.com/keyestudio-easy-plug-analog-rotation-sensor-module-for-arduino.html | ||
[[category:Module]] | [[category:Module]] |
Revision as of 11:30, 15 November 2017
EASY plug Analog Rotation Sensor
Introduction
This analog Rotation Sensor is arduino compatible. It is based on a potentiometer. Its voltage can be subdivided into 1024, easy to be connected to Arduino with our sensor shield. Combined with other sensors, we can make interesting projects by reading the analog value from the IO port.
Note: this module needs to be used together with EASY plug control board.
Specification
- Interface: Easy plug
- Supply Voltage: 3.3V to 5V
- Sensor type: Analog
- Size: 39*20mm
- Weight: 10g
Connection Diagram
Sample Code
///Arduino Sample Code void setup() { Serial.begin(9600); //Set serial baud rate to 9600 bps } void loop() { int val; val=analogRead(3);//Read rotation sensor value from analog 3 Serial.println(val,DEC);//Print the value to serial port delay(100); }
Resources
Datasheet
http://www.keyestudio.com/files/index/download/id/1463992190/
Buy from
Official Website
http://www.keyestudio.com/keyestudio-easy-plug-analog-rotation-sensor-module-for-arduino.html