PS2 Joystick Module Breakout Sensor
Review: 5 - "A masterpiece of literature" by John Doe, written onMay 4, 20020
Great

PS2 Joystick Module Breakout Sensor

Available:In Stock
  • Product SKU: KG005
Wishlist
₹ 30 ₹ 39
Available offers
Best Rates

on Express Shipping – Hurry! Shipping starts from Rs69.

Tc
Free Shipping Offer -

Avail free shipping on all orders above Rs999.

Tc
Volume Discounts-

Buy More Save More! Discounts upto 20%. Contact us

Special Bulk Discounts

for colleges, Schools, Companies & resellers Contact us

Cash on Delivery

Available above Rs 499

Tc
Highlights
  • Original, High Quality
  • KitsGuru Warranty
  • Size: 34 x 34 x 15mm
  • Weight: 11g
  • Pin: 2.54mm
  • Voltage: 5V
  • Stable & Long Life
  • Arduino-Compatible
Services
  • Email Support
  • Video Support to be purchased separately
Easy Payment Options
  • Netbanking
  • Debit/Credit cards
  • Cash on Delivery
  • E-wallets/UPI
Shipping Details
International Shipping
Available

  Need Volume Discounts? Deals are specially designed for you. Click here

  Need Customization? Provide us more details Click here

Warehouse Details   11B-106

Image
Secure

Specification

Description

PS2 Joystick Module Breakout Sensor

This is PS2 Joystick Module Breakout Sensor very similar to the ‘analog’ joysticks on PS2 (PlayStation 2) controllers. Directional movements are simply two potentiometers – one for each axis. Pots are ~10k each. This joystick also has a select button that is actuated when the joystick is press down.

With the help of this Joystick Module, you can measure position coordinates on the X and Y axis by moving the “hat”. It also contains a switch that is press-able by pushing the “hat”.It also contains a switch that is press-able by pushing the “hat” down. Similar to the XBOX controller.

The X and Y axes are two 10k potentiometers which control 2D movement by generating analog signals. When the module is in working mode, it will output two analog values, representing two directions. This module uses the 5V power supply, and value, when reading through analog input, would be about 2.5V, a value will increase with joystick movement and will go up till maximum 5V; the value will decrease when the joystick is moved in other direction till 0V.

Technical Details

  • Operating Voltage: 5V
  • XY Signal: 2x Analog
  • Button: 1x Digital (Requires Pull-Up Resistor on Arduino)
  • Dimensions: 34 x 34 x 15 (LxWxH) mm.
  • 2.54mm pin interface leads.

Features

  • 2.54mm Pin Interface Leads
  • Long Service Life and Stable Performance
  • Standard Interface for Electronic Building Blocks
  • Widely Used in Arduino DIY Projects
  • Cross Rocker with Two-Way 10K Resistor

Frequency Display Example:

  • "100" Indicates PWM Output Pulse of 100Hz
  • "54.1" Indicates PWM Output Pulse of 54.1KHz
  • "1.2.4." Indicates PWM Output Pulse of 124KHz
  • Duty Cycle Range: 0 to 100
  • Three Frequencies Have the Same Duty Cycle, All Parameters Non-Volatile

Module Description:

  • XXX (No Decimal Point): Smallest Unit is 1Hz, Range 1Hz-999Hz
  • XX.X (Decimal Point in Tenths): Smallest Unit is 0.1KHz, Range 0.1KHz-99.9KHz
  • X.X.X (Three Decimal Points): Smallest Unit is 1KHz, Range 1KHz-150KHz

Pin Description:

  • 1: Gnd - Ground Terminal of Module
  • 2: +5V - Positive Supply Terminal of Module
  • 3: VRx - Voltage Proportional to X Axis
  • 4: VRy - Voltage Proportional to Y Axis
  • 5: SW - Switch

Applications :

  • Gaming Controllers: Used in video game consoles and custom controllers.
  • Robotics: Controls robot movement or functions (e.g., steering, arm control).
  • Virtual Reality (VR): Enables input in VR environments for navigation or interaction.
  • Remote Control Systems: Used for controlling devices such as drones, cars, or boats.
  • Simulators: For flight, driving, or other simulation setups requiring movement control.
  • Assistive Devices: Used in devices for individuals with disabilities to interact with technology.
  • Custom Projects: Integrated into DIY electronics projects for human-machine interfaces.
  • Arduino Projects: Common in DIY projects for controlling motors or servos.
  • Embedded Systems: Used in portable or embedded systems for control interfaces.
  • Home Automation: Controls smart home systems, such as adjusting lights or appliances.

Integration with Arduino of PS2 game joystick module

 Integration with Arduino

Sample Code

Physical Attributes of ps2 game joystick module

  • Dimensions: 34 x 34 x 15 (LxWxH) mm.
  • Weight (gm): 11

Package Includes

  • 1 x PS2 Joystick Module Breakout Sensor

Customer Reviews

Based on 13 reviews
100%
(13)
0%
(0)
0%
(0)
0%
(0)
0%
(0)
s
santosh
Joyfull Thumbs

Needed some extra stock items... I did use 1 in a little build project and it turned out nice, the tension in the springs was perfect, the responce of the resistors very smooth and even, no glitchyness.

a
aman
Great Item

Great Item and Service

m
mazida
Five Stars

works good

k
kushal
These are great! I used four for my first robotics project ...

These are great! I used four for my first robotics project and they work perfectly.

s
santosh
Five Stars

These were wonderful, and exactly what I needed.

s
sharat chandran
Great joysticks!

I've used several of these so far, and been happy with all of them. I've connected them to an Arduino's 5v, gnd, and analog inputs. The only issue that I've seen is that they don't center exactly on 512--they center somewhere around 490 to 525 ish. But they move smoothly and evenly across the range.

r
ram kumar
Smooth gradation of values - see code...

I'm not sure why some folks are having issues getting a smooth sample of values across the stroke of the joystick's axis. It is important to note these are not intended to be maxed out to an extent position anyway. You can only move about half way or a little more to the edge before it is overwhelmed. So perhaps people are just not moving slowly. Got me. But here is some code I used to test mine with. No issues. I hope this helps someone.../* micro joystick test sketch / atomkey 2019 doesn't test for the push button feature - that's simple ~does test for the analog read on the x and y axis I coded this for folks that have said there are only three gradations of measure they can get. This runs fine on my Arduino and generates a smooth gradation from 1024 max to 512 center and then to 0 minimum. Keep in mind the joystick isn't intended to be moved to its extreme extents. The boundry is not at the outer edge. 4 wires from the joystick to the arduino 2 for the axis 1 for the ground and 1 for the +5v */int sensorPinX = A0; // input pin joystick x axisint sensorPinY = A1; // input pin joystick y axisint sensorValueX = 0; // variable x axisint sensorValueY = 0; // variable y axisvoid setup() { Serial.begin(9600);}void loop() { // read the x,y values from the sensor: sensorValueX = analogRead(sensorPinX); sensorValueY = analogRead(sensorPinY); Serial.print(sensorValueX); // show results Serial.print(" "); // on serial monitor as Serial.println(sensorValueY); // two columns of data delay(150); // for even smoother (stable) results you can perform a // mean sample run. That's where you sample the signal // n times over t seconds and take the average of the reads.}

m
md. afsar
Works fine

Used in my raspberry pi projects, worked great

m
mohabbat ali
Five Stars

They work great and the kids like to play with them

n
nausad
Great product

Great product