Ron JENSEN: config for 'Saitek Saitek Pro Flight Quadrant'
Axis Left to Right: Throttle, Prop Pitch, Mixture Buttons Left to Right: Flaps, Trim, Gear (up is up, down is down)
This commit is contained in:
parent
f69eaafc07
commit
fd983fd62c
1 changed files with 90 additions and 0 deletions
90
Input/Joysticks/Saitek/Pro-Flight-Quadrant.xml
Normal file
90
Input/Joysticks/Saitek/Pro-Flight-Quadrant.xml
Normal file
|
@ -0,0 +1,90 @@
|
|||
<?xml version="1.0"?>
|
||||
<!-- Saitek Pro Flight Quadrant
|
||||
|
||||
Copyright (C) 2008 Ronald Jensen (wino(at)jentronics.com)
|
||||
This file is released under the GPL license.
|
||||
-->
|
||||
<PropertyList>
|
||||
<name>Saitek Saitek Pro Flight Quadrant</name>
|
||||
<axis n="0">
|
||||
<desc>Throttle</desc>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.throttleAxis()</script>
|
||||
</binding>
|
||||
</axis>
|
||||
<axis n="1">
|
||||
<desc>Prop Pitch</desc>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.propellerAxis()</script>
|
||||
</binding>
|
||||
</axis>
|
||||
<axis n="2">
|
||||
<desc>Mixture </desc>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.mixtureAxis()</script>
|
||||
</binding>
|
||||
</axis>
|
||||
<button n="0">
|
||||
<desc>Flaps up</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.flapsDown(-1)</script>
|
||||
</binding>
|
||||
<mod-up>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.flapsDown(0)</script>
|
||||
</binding>
|
||||
</mod-up>
|
||||
</button>
|
||||
<button n="1">
|
||||
<desc>Flaps down</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.flapsDown(1)</script>
|
||||
</binding>
|
||||
<mod-up>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.flapsDown(0)</script>
|
||||
</binding>
|
||||
</mod-up>
|
||||
</button>
|
||||
<button n="2">
|
||||
<desc>Elevator trim up</desc>
|
||||
<repeatable>true</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.elevatorTrim(-0.75)</script>
|
||||
</binding>
|
||||
</button>
|
||||
<button n="3">
|
||||
<desc>Elevator trim down</desc>
|
||||
<repeatable>true</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.elevatorTrim(0.75)</script>
|
||||
</binding>
|
||||
</button>
|
||||
<button n="4">
|
||||
<desc>Gear up</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.gearDown(-1)</script>
|
||||
</binding>
|
||||
</button>
|
||||
<button n="5">
|
||||
<desc>Gear down</desc>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>controls.gearDown(1)</script>
|
||||
</binding>
|
||||
</button>
|
||||
</PropertyList>
|
Loading…
Add table
Reference in a new issue