Adding RC joystick support for Hitec Laser 4 transmitter used in conjunction with RCJOY USB box. MSS
This commit is contained in:
parent
b05f6c10f5
commit
8a024313ac
1 changed files with 86 additions and 0 deletions
|
@ -0,0 +1,86 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!--
|
||||
************************************************************************
|
||||
*
|
||||
* Bindings for Lew Engineering RCJOY USB - R/C Transmitter USB Joystick
|
||||
*
|
||||
* Configured for the Hitec Laser 4 RC transmitter,
|
||||
* but nearly all major brands are supported:
|
||||
* Futaba, Airtronics, JR, Hitec, Tower Hobbies, and Multiplex
|
||||
*
|
||||
* Ailerons, elevators, rudder, and throttle (channels 1 through 4)
|
||||
* are supported. Channels 5 through 8 are used to emulate the
|
||||
* four standard joystick buttons.
|
||||
*
|
||||
* For a list of supported radios,
|
||||
* see http://www.leweng.com/support.html
|
||||
*
|
||||
* Michael Selig
|
||||
* 2003/03/25
|
||||
*
|
||||
* Axis 0: ailerons
|
||||
* Axis 1: elevator
|
||||
* Axis 2: rudder
|
||||
* Axis 3: throttle
|
||||
*
|
||||
* Radios other than the Hitec might require different axis index assignments.
|
||||
* Also, the factor value below might need to be adjusted to get full
|
||||
* stick throws in FlightGear.
|
||||
*
|
||||
************************************************************************
|
||||
-->
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<name>Lew Engineering RCJOY USB - R/C Transmitter USB Joystick</name>
|
||||
|
||||
<axis n="0">
|
||||
<desc>Aileron</desc>
|
||||
<binding>
|
||||
<command>property-scale</command>
|
||||
<property>/controls/aileron</property>
|
||||
<squared type="bool">false</squared>
|
||||
<factor type="double">1.1</factor>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
<axis n="2">
|
||||
<desc>Rudder</desc>
|
||||
<binding>
|
||||
<command>property-scale</command>
|
||||
<property>/controls/rudder</property>
|
||||
<squared type="bool">false</squared>
|
||||
<factor type="double">1.0</factor>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
<axis n="1">
|
||||
<desc>Elevator</desc>
|
||||
<binding>
|
||||
<command>property-scale</command>
|
||||
<property>/controls/elevator</property>
|
||||
<squared type="bool">false</squared>
|
||||
<factor type="double">1.0</factor>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
|
||||
<axis n="3">
|
||||
<desc>Throttle</desc>
|
||||
<binding>
|
||||
<command>property-scale</command>
|
||||
<property>/controls/throttle[0]</property>
|
||||
<offset type="double">1.0</offset>
|
||||
<factor type="double">0.6</factor>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>property-scale</command>
|
||||
<property>/controls/throttle[1]</property>
|
||||
<offset type="double">1.0</offset>
|
||||
<factor type="double">0.6</factor>
|
||||
</binding>
|
||||
</axis>
|
||||
|
||||
|
||||
</PropertyList>
|
Loading…
Add table
Reference in a new issue