1
0
Fork 0

Updated FighterStick bindings:

- Trigger is now used as a trigger
- Top left button now PTT switch for FGCOM
- View movement now 30 degree steps.
- Rudder trim corrected.
This commit is contained in:
stuart 2009-07-04 20:28:55 +00:00
parent 271ff8f979
commit cb9365a661

View file

@ -9,8 +9,8 @@
* Axes 6 : Rudder trim (8-way hat)
* Axes 7 : Elevator trim (8-way hat)
*
* Button 0 (trigger) : PTT - Push To Talk (via VoIP)
* Button 1 (top left) : Unassigned
* Button 0 (trigger) : Trigger
* Button 1 (top left) : PTT - Push To Talk (via VoIP)
* Button 2 (top right): Parking brake
* Button 3 (bottom) : view reset
* Button 5/6 (left 4-way up/down): Flaps
@ -19,10 +19,10 @@
************************************************************************
-->
<PropertyList>
<name>CH FIGHTERSTICK USB </name>
<name>CH PRODUCTS CH FIGHTERSTICK USB </name>
<axis n="0">
<desc>Aileron</desc>
<binding>
@ -33,7 +33,7 @@
<factor type="double">1.0</factor>
</binding>
</axis>
<axis n="1">
<desc>Elevator</desc>
<binding>
@ -44,7 +44,7 @@
<factor type="double">-1.0</factor>
</binding>
</axis>
<axis n="2">
<desc>Throttle</desc>
<binding>
@ -52,7 +52,7 @@
<script>controls.throttleAxis()</script>
</binding>
</axis>
<axis>
<desc>Rudder Trim</desc>
<number>
@ -63,18 +63,18 @@
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>controls.rudderTrim(1)</script>
<script>controls.rudderTrim(-1)</script>
</binding>
</low>
<high>
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>controls.rudderTrim(-1)</script>
<script>controls.rudderTrim(1)</script>
</binding>
</high>
</axis>
<axis>
<desc>Elevator Trim</desc>
<number>
@ -112,6 +112,21 @@
</mod-up>
</button>
<button n="1">
<name>PTT</name>
<desc>Push To Talk (FGCom)</desc>
<binding>
<command>nasal</command>
<script>controls.ptt(1)</script>
</binding>
<mod-up>
<binding>
<command>nasal</command>
<script>controls.ptt(0)</script>
</binding>
</mod-up>
</button>
<button n="2">
<desc>Parking Brake Off</desc>
<repeatable>false</repeatable>
@ -120,7 +135,7 @@
<script>controls.applyParkingBrake(1)</script>
</binding>
</button>
<button n="3">
<desc>Reset view</desc>
<repeatable>false</repeatable>
@ -134,7 +149,7 @@
</script>
</binding>
</button>
<button n="4">
<desc>Flaps Up</desc>
<repeatable>false</repeatable>
@ -149,7 +164,7 @@
</binding>
</mod-up>
</button>
<button n="6">
<desc>Flaps Down</desc>
<repeatable>false</repeatable>
@ -164,7 +179,7 @@
</binding>
</mod-up>
</button>
<button n="8">
<desc>View Decrease</desc>
<repeatable>true</repeatable>
@ -173,7 +188,7 @@
<script>view.decrease(0.75)</script>
</binding>
</button>
<button n="9">
<desc>View Cycle Forwards</desc>
<repeatable>false</repeatable>
@ -182,7 +197,7 @@
<script>view.stepView(1)</script>
</binding>
</button>
<button n="10">
<desc>View Increase</desc>
<repeatable>true</repeatable>
@ -191,7 +206,7 @@
<script>view.increase(0.75)</script>
</binding>
</button>
<button n="11">
<desc>View Cycle Backwards</desc>
<repeatable>false</repeatable>
@ -200,45 +215,45 @@
<script>view.stepView(-1)</script>
</binding>
</button>
<button n="12">
<desc>View Up</desc>
<repeatable>true</repeatable>
<repeatable>false</repeatable>
<binding>
<command>property-adjust</command>
<property>/sim/current-view/goal-pitch-offset-deg</property>
<step type="double">4.0</step>
<step>20.0</step>
</binding>
</button>
<button n="13">
<desc>View Right</desc>
<repeatable>true</repeatable>
<repeatable>false</repeatable>
<binding>
<command>property-adjust</command>
<property>/sim/current-view/goal-heading-offset-deg</property>
<step type="double">-4.0</step>
<step>-30.0</step>
</binding>
</button>
<button n="14">
<desc>View Down</desc>
<repeatable>true</repeatable>
<repeatable>false</repeatable>
<binding>
<command>property-adjust</command>
<property>/sim/current-view/goal-pitch-offset-deg</property>
<step type="double">-4.0</step>
<step>-20.0</step>
</binding>
</button>
<button n="15">
<desc>View Left</desc>
<repeatable>true</repeatable>
<repeatable>false</repeatable>
<binding>
<command>property-adjust</command>
<property>/sim/current-view/goal-heading-offset-deg</property>
<step type="double">4.0</step>
<step>30.0</step>
</binding>
</button>
</PropertyList>