Product Manual

Joystick Plug      

 

   

 

   

   

 

  Updated on: ​27th November 2017   

Product Manual: Joystick Plug   

   

Index  About Elint Labz



Introduction



Specification



Variants



Supported cables



Details



How to interface?



Example Codes



Arduino



Contributors



   

 

 

     

Elint Labz (​www.elintlabz.in​) 

Page 1 of 7 

Product Manual: Joystick Plug   

         

About Elint Labz  Elint  Labz  (usually  abbreviated  as  EL)  is  an  electronics  design  &  development  tools  designer  &  manufacturer  with  headquarters  in  Bengaluru,  India.  We  design,  develop  &  manufacture  development  boards  based  on  micro-controller  &  microprocessors,  breakout  boards  for  various  sensors  &  actuators. Our domain & expertise is in the area of  Electronics & Embedded Systems.    Elint  Labz  was  founded  in  2014  however  the  actual operations started from 2015 when it  became  a  full  time  subsidiary  of  Hogst Innovative Solutions Pvt. Ltd. & is presently a part  of  Ajaramara  Group  a  conglomerate  of  various  domains  of  industries,  registered  in  India  as Ajaramara Dynamics Pvt. Ltd. under Companies Act of 2013.    As  in  the  name  company  (Elint  Labz)  –  Electronic  intelligence  (​ELINT​)  is  intelligence  gathered  by  the  use  of  electronic  sensors,  Laboratories  (LABZ)  are  facilities  that  provides  controlled  conditions  in  which scientific or technological research, experiments  and  measurement  may  be  performed.  EL  is  an  enterprise  built  to  develop  smart  &  intelligent  electronics  &  EL  is  committed  to  help  achieve  electronics  literacy in India. No  matter  the  vision  or  skill  level,  our  products  and  resources  are  designed  to  make  electronics & programmable development hardware more accessible.    Elint  Labz  as  a  platform  helps  developers  &  young  engineers  from  prototyping  to  product  development.  We  provide  open  source  hardware  solutions  and  small  quantity  manufacturing  services  using  a  design  from  manufacturing  framework.  We  are  a strong  promoter  of  the  maker  movement  in  India,  most  of  the  manufacturing  happens  with  support  of  our  various  Indian  partners  &  couple  of  our  collaboration  partners  who  have  manufacturing & sourcing facilities in Germany, Korea & Shenzhen.     To know more visit the about us section on our website: ​http://elintlabz.in/about-us/      Elint Labz (HQ)  ˗ #​200 1​st main Arekere MICO layout ​2​nd stage   Bengaluru ​560076​ KA ​[Marked on Google Maps]  ✆ ​+91 855 377 2525  ː ​[email protected]

 

Elint Labz (​www.elintlabz.in​) 

Page 2 of 7 

Product Manual: Joystick Plug   

       

  Introduction 

This  joystick  is  very  similar  to  the  ‘analog’  joysticks  on  PS2  (PlayStation  2)  controllers.  Directional  movements  are  simply  associated  with  two  potentiometers  -  one  for  each  axis.  POTs  are  approximately  10kΩ  each.  This  joystick  also  has  a  select  button  that  is  actuated  when  the  joystick  is  pressed  down.  Elint  Labz  has built a plug using this joystick and it ​can be  mounted anywhere using screws.   

   

  Specification  ●

Operating voltage: 5V 

● Size: 32mm x 35mm 

Elint Labz (​www.elintlabz.in​) 

Page 3 of 7 

Product Manual: Joystick Plug   

  Variants  ●

​ None 

Supported cables  ● 4-4A 

  Details 

  Joystick  plug  is  a  analog  input  device  to  the  interfacing  system.  It  has  a  interfacing  port with five pins named as G, V, X, Y & D. Here G represents Ground ,  V  represents  VCC,  X  and  Y  represents  the  data  pins.  X  gives  the  Horizontal  movement  values  of  Joystick  and  Y  gives  the  vertical  movement  values  of  Joystick. D pin of the plug is not used in this PCB run.    ● When  the  joystick is in the center position both X & Y data pins give middle  values i.e., 512.  ● When the joystick is at extreme left position X data pin gives 1023 value.  ● When the joystick is at extreme right position X data pin gives 0 value.  ● When the joystick is at extreme top position Y data pin gives 1023 value.  ● When the joystick is at extreme bottom position Y data pin gives 0 value.   

   

Elint Labz (​www.elintlabz.in​) 

Page 4 of 7 

Product Manual: Joystick Plug   

  How to interface? 

  Use  4-4A  interfacing  cables  to  connect  this  plug  to  the  controller  board.  If  4-4A  cable  is  to  be  used  then  any  end  of  the  cable  can  be  connected  to  the  Joystick  plug.  Always  ensure  that  black  wire  of  the  cable  is  connected  to  the  G  pin  on  both ends.    In  the  below  given  pictures  you  can  see  4-4A  cable  is  used  to  connect  Joystick  plug  to  the  Pluguino  Board.  The  data  pins  of  the  Joystick  plug  are  connected  to  the A0 and A1 GPIO pin on the controller board.    

Elint Labz (​www.elintlabz.in​) 

Page 5 of 7 

Product Manual: Joystick Plug   

  Elint Labz (​www.elintlabz.in​) 

Page 6 of 7 

Product Manual: Joystick Plug   

In  this  example  we  are  going  read  x-axis  and y-axis values from the joystick plug  and display it on the serial terminal.     

Example Codes  Arduino  #define X A0 #define Y A1 unsigned​ ​int​ a; unsigned​ ​int​ b;

​// ​// ​// ​//

use A0 pin to read X axis values use A1 pin to read Y axis values variable to store X axis values variable to store Y axis values

void​ ​setup​() { Serial.begin(​9600​); ​// initialize serial transfer at 9600 bps } void​ ​loop​() { a = analogRead(X); ​// reading the values in horizontal direction b = analogRead(Y); ​// reading the value in vertical direction Serial.print(“X= “); ​// printing string Serial.print(a); ​// print X values in serial monitor Serial.print(​"\t"​); ​// printing spaces Serial.print(“Y= “); ​// printing string Serial.println(b); ​// print Y values in serial monitor  Output video: ​https://youtu.be/5hToz-H2XsY

Elint Labz (​www.elintlabz.in​) 

Page 7 of 7 

Product Manual: Joystick Plug   

Contributors  List of interns & other contributors who have worked for developing this manual   

Vamsidhar Reddy Vardana  http://www.elintlabz.in/profile-1801 

   

   

Elint Labz (​www.elintlabz.in​) 

Page 8 of 7 

Joystick Plug

3. Variants. 4. Supported cables. 4. Details. 4. How to interface? 5. Example Codes. 7. Arduino. 7. Contributors. 8. Elint Labz (​www.elintlabz.in​). Page 1 of 7 .... Supported cables. ○ 4-4A. Details. Joystick plug is a analog input device to the interfacing system. It has a interfacing port with five pins named as G, V, X, Y & D.

7MB Sizes 1 Downloads 284 Views

Recommend Documents

Cheap New Mobile Phone Physical Joystick Fling Joystick Game ...
Cheap New Mobile Phone Physical Joystick Fling Joysti ... Black Color Only Free Shipping & Wholesale Price.pdf. Cheap New Mobile Phone Physical Joystick ...

TSOP Plug
Nov 27, 2017 - TSOP, an IR receiver, outputs a constant HIGH signal when it is idle and as it receives data from the remote, it tends to invert the data. i.e when an IR LED of the remote is transmitting data onto the TSOP, every time the IR led goes

Relay​ ​Plug
Index. 1. Introduction. 2. Specification. 3. Operating​ ​voltage:​ ​5V. 3. Variants. 4 .... To activate the relay Plug the corresponding data pin on the controller board to ... Normally Open Contact (NO): ​NO contact is also called 'make co

Cheap Bluetooth Android Game Controller Wireless Joystick ...
Cheap Bluetooth Android Game Controller Wireless Joy ... Phone Tablet Pc Free Shipping & Wholesale Price.pdf. Cheap Bluetooth Android Game Controller ...

Cheap New Eu To China Plug Adapter Socket Plug Converter ...
Cheap New Eu To China Plug Adapter Socket Plug Conve ... lectrical Outlet Free Shipping & Wholesale Price.pdf. Cheap New Eu To China Plug Adapter Socket ...

Rotary sensor plug
A Rotary potentiometer is a three terminal variable resistor with a rotating contact that forms an adjustable voltage divider. An adjustable potentiometer can open.

LED Plug
Jun 5, 2017 - In this example, we are going to blink an LED with 1 second delay that means LED turns. ON for one second and turns OFF for another second. Example Codes. Code 1: Arduino void setup(). {. pinMode(12,OUTPUT); // define 12th GPIO pin as O

Buzzer plug [v 1.1]
manufacture development boards based on micro-controller & microprocessors, breakout boards ... the user's need and also this plug can be mounted anywhere using screws. ... to the Buzzer plug and 4 pin end of the cable is connected to the.

Slide switch plug
#define second_led 13 ​//second LED is connected to 13th pin. #define first_datapin 10 ​//D1 of slide switch is connected to. 10th pin. #define second_datapin ...

THERMISTOR PLUG [v2]
Nov 27, 2017 - manufacturing services using a design from manufacturing framework. ... large, predictable and precise change in electrical resistance when ...

USB—A—Plug - CQHAM.ru
Opendous inc. deeded this hardware design into the Public Domain. Opendous Inc. Title: Upconverter—iOOMHl—13LO—SMS3926—CX2147. Size: A4 i Date: ...

Buzzer Plug
output pin. } /* the loop function runs over and over again forever*/ void​ ​loop​(). {. digitalWrite(Buzzer_pin, HIGH); ​// activate the buzzer delay(​1000​);. ​// wait for a second. digitalWrite(Buzzer_pin, LOW); ​// deactivate the

Thermistor Plug
Nov 27, 2017 - As in the name company (Elint Labz) – Electronic intelligence (​ELINT​) is intelligence gathered by the use of ... intelligent electronics & EL is committed to help achieve electronics literacy in India. No matter the vision ...

LED Plug [v2]
Product Manual: LED Plug. Introduction. This version of LED plug has an LED, SMD resistors and a transistor. In this plug. CTBC 547B transistor is used, It has a ...

Object Sensor Plug
Nov 27, 2017 - 4. Supported cables: 5. Details. 5. How to interface? 5. Example Codes. 7. Code 1: Arduino. 7. Elint Labz (​www.elintlabz.in​). Page 1 of 6 ...

man-33\volvo-grader-joystick-controls.pdf
man-33\volvo-grader-joystick-controls.pdf. man-33\volvo-grader-joystick-controls.pdf. Open. Extract. Open with. Sign In. Main menu.

Dual​ ​LED​ ​Plug
Dual LED plug has two 3mm LEDs with a current limiting resistors which can be used as an indicator in various projects. This PCB design enables you to bend ...

Ultimate Plug-Ins
Created by the designer of the kingdom-building system ... LLC or other campaigns featuring themes like Gothic horror, the alien Lovecraftian mythos, epic.

Joystick​ ​Plug
Introduction. This joystick is very similar to the 'analog' joysticks on PS2 (PlayStation 2) controllers. Directional movements are simply associated with two potentiometers - one for each axis. POTs are approximately 10kΩ each. This joystick also h