Difference between revisions of "Joystick"

From PaparazziUAV
Jump to navigation Jump to search
m
Line 57: Line 57:
==OSX==
==OSX==


Feel free to add your instructions here.
Whether you are running on Mac OS X or Linux, the ''test_stick'' tool provides the ability to profile a joystick device. The tool is located in ''$PAPARAZZI_HOME/sw/ground_segment/joystick/''
 
<nowiki>
$ ./test_stick -h
Usage:
  ./test_stick <option> [<option>...]
Options:
  -d <string>  device name
  -h          display this help
</nowiki>


[[Category:Hardware]] [[Category:User_Documentation]]
[[Category:Hardware]] [[Category:User_Documentation]]

Revision as of 11:20, 2 September 2016

Introduction

A Joystick can be used to control your aircraft in the simulator or via the modem using radio_control type datalink in real flight using Input2Ivy.

Examples

Here a regular gaming pad, perfectly capable to control your aircraft when in manual or assisted flight

Here and example of an Joystic that looks like an RC transmitter, but is just an USB connected Joystick. Handy for quick tests, and for ER 13, why not add one to you Paparazzi toolset?

Here a real RC transmitter connected via trainer port to your PC to be used as a Joystick

Quick test

If plugged in, under Linux a quick test to see if the device is recognized via:

$ dmesg

Although the message is a little different for evey joysticktype, it should display something like this in last lines:

...
[ 8988.708567] usb 2-4.3: new low-speed USB device number 7 using ehci-pci
[ 8988.804672] usb 2-4.3: New USB device found, idVendor=0603, idProduct=1a13
[ 8988.804679] usb 2-4.3: New USB device strings: Mfr=0, Product=34, SerialNumber=0
[ 8988.804683] usb 2-4.3: Product: ART TECH GAME.  
[ 8988.808821] input: ART TECH GAME.   as /devices/pci0000:00/0000:00:06.1/usb2/2-4/2-4.3/2-4.3:1.0/input/input14
[ 8988.809007] hid-generic 0003:0603:1A13.0006: input,hidraw4: USB HID v1.00 Joystick [ART TECH GAME.  ] on usb-0000:00:06.1-4.3/input0
...

Joystick Calibration

You should always calibrate your joystick. By calibrating you make sure that your Joystick is not sending steering comanding values; while it should not when the steering sticks are in neutral position.

Linux

Install the joystick and the jstest-gtk packages via:

$ sudo apt-get install joystick jstest-gtk

Use the graphical jstest-gtk tool (or the commandline jstest) to view/edit your joystick calibration and axis/button mappings. Start it via:

$ jstest-gtk

Store the calbration

Your calibration and mapping will only be lost once you unplug the joystick, so store your configuration via:

$ sudo jscal-store /dev/input/js0

If you replug your joystick the next time, udev should take care of automatically loading the appropriate configuration.

OSX

Whether you are running on Mac OS X or Linux, the test_stick tool provides the ability to profile a joystick device. The tool is located in $PAPARAZZI_HOME/sw/ground_segment/joystick/

$ ./test_stick -h Usage: ./test_stick <option> [<option>...] Options: -d <string> device name -h display this help