Ks0245 keyestudio EASY plug Joystick Module: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) |
||
Line 52: | Line 52: | ||
==What You Should See== | ==What You Should See== | ||
Done uploading the code, open the serial monitor and set the baud rate to 9600. If push the Joystick button towards different direction, you should get the different value. | Done uploading the code, open the serial monitor and set the baud rate to 9600. If push the Joystick button towards different direction, you should get the different value. | ||
<br>[[File:KS0245-3.png| | <br>[[File:KS0245-3.png|700px|frameless|thumb]]<br> | ||
<br> | <br> | ||
==Resources == | ==Resources == | ||
'''File PDF:'''<br> | '''File PDF:'''<br> |
Revision as of 15:16, 27 November 2018
Introduction
Lots of robot projects need joystick. This module provides an affordable solution.
By simply connecting to two analog inputs, the robot is at your commands with X, Y control. It also has a switch that is connected to a digital pin.
This joystick module can be easily connect to EASY PLUG control board with only one cable.
Specifications
- Supply Voltage: 3.3V to 5V
- Interface: Digital
Technical Details
- Dimensions: 45mm*28mm*33mm
- Weight: 12.5g
Connect It Up
Connect the EASY Plug Joystick module to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
Upload the Code
Copy and paste below code to Arduino IDE and upload.
int JoyStick_X = 6; //x int JoyStick_Y = 7; //y int JoyStick_Z = 2; //key void setup() { pinMode(JoyStick_Z, INPUT); Serial.begin(9600); // 9600 bps } void loop() { int x,y,z; x=analogRead(JoyStick_X); y=analogRead(JoyStick_Y); z=digitalRead(JoyStick_Z); Serial.print(x ,DEC); Serial.print(","); Serial.print(y ,DEC); Serial.print(","); Serial.println(z ,DEC); delay(100); }
What You Should See
Done uploading the code, open the serial monitor and set the baud rate to 9600. If push the Joystick button towards different direction, you should get the different value.
Resources
File PDF:
https://drive.google.com/open?id=1bwMVB2CA3Q-XeBaUQEIpO-Wil4Yu_6pi
Buy from
Official Website
http://www.keyestudio.com/easy-plug-joystick-module.html