1
0
Fork 0

ThrustMaster T1600M tweaks

- left/right top of stick buttons cycles views, instead of aileron
  trim, since I judge this to be a more commonly used feature. But
  maybe this will cause a conversation.

- adjust sensitivity of the hat view-direction control, was unusably
  fast for me.
This commit is contained in:
James Turner 2016-01-15 19:38:38 -06:00
parent bd1fa5b201
commit fd8a1dece8

View file

@ -111,7 +111,7 @@
<binding> <binding>
<command>property-adjust</command> <command>property-adjust</command>
<property>/sim/current-view/goal-heading-offset-deg</property> <property>/sim/current-view/goal-heading-offset-deg</property>
<step type="double">5.0</step> <step type="double">2.0</step>
</binding> </binding>
</low> </low>
<high> <high>
@ -119,7 +119,7 @@
<binding> <binding>
<command>property-adjust</command> <command>property-adjust</command>
<property>/sim/current-view/goal-heading-offset-deg</property> <property>/sim/current-view/goal-heading-offset-deg</property>
<step type="double">-5.0</step> <step type="double">-2.0</step>
</binding> </binding>
</high> </high>
</axis> </axis>
@ -136,7 +136,7 @@
<binding> <binding>
<command>property-adjust</command> <command>property-adjust</command>
<property>/sim/current-view/goal-pitch-offset-deg</property> <property>/sim/current-view/goal-pitch-offset-deg</property>
<step type="double">5.0</step> <step type="double">2.0</step>
</binding> </binding>
</low> </low>
<high> <high>
@ -144,7 +144,7 @@
<binding> <binding>
<command>property-adjust</command> <command>property-adjust</command>
<property>/sim/current-view/goal-pitch-offset-deg</property> <property>/sim/current-view/goal-pitch-offset-deg</property>
<step type="double">-5.0</step> <step type="double">-2.0</step>
</binding> </binding>
</high> </high>
</axis> </axis>
@ -164,7 +164,7 @@
</mod-up> </mod-up>
</button> </button>
<button n="4"> <button n="1">
<desc>Trigger</desc> <desc>Trigger</desc>
<binding> <binding>
<command>property-assign</command> <command>property-assign</command>
@ -229,6 +229,7 @@
</mod-up> </mod-up>
</button> </button>
<!--
<button n="1"> <button n="1">
<desc>Landing Gear Toggle</desc> <desc>Landing Gear Toggle</desc>
<repeatable type="bool">false</repeatable> <repeatable type="bool">false</repeatable>
@ -237,23 +238,23 @@
<script>controls.gearToggle()</script> <script>controls.gearToggle()</script>
</binding> </binding>
</button> </button>
-->
<button n="2"> <button n="2">
<desc>Aileron trim left</desc> <desc>Cycle view back</desc>
<repeatable type="bool">true</repeatable> <repeatable>false</repeatable>
<binding> <binding>
<command>nasal</command> <command>nasal</command>
<script>controls.aileronTrim(-0.5)</script> <script>view.stepView(-1)</script>
</binding> </binding>
</button> </button>
<button n="3"> <button n="3">
<desc>Aileron trim right</desc> <desc>Cycle view forward</desc>
<repeatable type="bool">true</repeatable> <repeatable>false</repeatable>
<binding> <binding>
<command>nasal</command> <command>nasal</command>
<script>controls.aileronTrim(0.5)</script> <script>view.stepView(1)</script>
</binding> </binding>
</button> </button>
@ -396,4 +397,3 @@ elsif ( l == 3 )
<!-- end of TGF2PROUSB.xml --> <!-- end of TGF2PROUSB.xml -->