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