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:
parent
271ff8f979
commit
cb9365a661
1 changed files with 45 additions and 30 deletions
|
@ -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
|
||||
|
@ -63,14 +63,14 @@
|
|||
<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>
|
||||
|
@ -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>
|
||||
|
@ -203,41 +218,41 @@
|
|||
|
||||
<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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue