Author Topic: Has anyone found a use for...  (Read 900 times)

Offline Raptor

  • Platinum Member
  • ******
  • Posts: 7577
Has anyone found a use for...
« Reply #15 on: July 08, 2006, 02:13:25 AM »
Confangled hooligans and your high tech gizmos and your "joy sticks"

Offline ridley1

  • Nickel Member
  • ***
  • Posts: 677
Has anyone found a use for...
« Reply #16 on: July 08, 2006, 08:37:08 AM »
Hubs...I have my X52 mapped using the SST software.

All the axis' (axisis, axiees, axi?) on the joystick, i.e. throttle, pitch, yaw, rudder...I have mapped through AH.  The rotary knobs I have mapped through the SST and AH depending on what I am using them for....

For trim.....which is an analog input...is through AH..
for something like zoom....I use the rotaries as well...in "band" mode, which becomes key presses
I use my hats as key presses for views and zoom and other things.

The SST handles key presses without a problem...but remember, if you need a press and hold key (say looking right up, or brakes, or bomb site calibration) you have to use the SST advanced commands, to show that it's a press and hold.

Now if you're going to use the "mousestick" on the throttle as a mouse, you have to classify it as  a mouse axis in SST, then assign it in AH as an Axis command


Hope this hasn't confused you as much as it has me.

Offline Clifra Jones

  • Silver Member
  • ****
  • Posts: 1210
Re: Has anyone found a use for...
« Reply #17 on: July 08, 2006, 02:33:26 PM »
Quote
Originally posted by RaidAW
the little 'joystick' on ch throttle?

I can't find anything to do with it and it is bugging me.


I use it to control my views. Below is the script. You need to program cms buttons 9-16 to activeX buttons and use the pinky button as a shift key.

Example cms button 9 normal = control1-button 9, shift=control1-button 17, so on through button 16, then map these buttons in AH. Map the shifted buttons to the up views.

I use a combined map that combines all controllers into 1 virtual controller.

(variable B99 has to do with another script I use that locks views using the castle hat on the flight stick. I can be removed from this script if used stabd alone)

//Microstick
SELECT (JS2.A1, RANGE) OF
   CASE 0: //BACK
      A1=1;
      B1=TRUE;
   BREAK;
   CASE 85: //CENTER
      A1=2;
      B1=FALSE;
   BREAK;
   CASE 170: //FORWARD
      A1=3;
      B1=TRUE;
   BREAK;
ENDSELECT

SELECT (JS2.A2, RANGE) OF
   CASE 0: //LEFT
      A2=1;
      B2=TRUE;
   BREAK;
   CASE 85: //CENTER
      A2=2;
      B2=FALSE;
   BREAK;
   CASE 170: //RIGHT
      A2=3;
      B2=TRUE;
   BREAK;
ENDSELECT   

//CENTER
IF ((NOT B1 AND NOT B2) AND NOT B99) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//FORWARD
IF ([A1==3] AND [A2==2]) THEN
   cms.b9=TRUE;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//RIGHT
IF ([A1==2] AND [A2==3]) THEN
   cms.b9=false;
   cms.b10=TRUE;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//BACK
IF ([A1==1] AND [A2==2]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=TRUE;
   cms.b12=FALSE;
   cms.b13=false;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//LEFT
IF ([A1==2] AND [A2==1]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=TRUE;
   cms.b13=FALSE;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//FORWARD RIGHT
IF ([A1==3] AND [A2==1]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=TRUE;
   cms.b14=false;
   cms.b15=false;
   cms.b16=false;
ENDIF

//BACK RIGHT
IF ([A1==1] AND [A2==1]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=TRUE;
   cms.b15=false;
   cms.b16=false;
ENDIF

//BACK LEFT
IF ([A1==1] AND [A2==3]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=false;
   cms.b15=TRUE;
   cms.b16=false;
ENDIF

//FORWARD LEFT
IF ([A1==3] AND [A2==3]) THEN
   cms.b9=false;
   cms.b10=false;
   cms.b11=false;
   cms.b12=false;
   cms.b13=false;
   cms.b14=false;
   cms.b15=false;
   cms.b16=TRUE;
ENDIF

Offline AWRaid

  • Parolee
  • Copper Member
  • **
  • Posts: 140
      • Semper Fi
Has anyone found a use for...
« Reply #18 on: July 08, 2006, 03:51:26 PM »
Thats cool Clif.
-Raid


<S> SDShill <S>

Offline Flayed1

  • Silver Member
  • ****
  • Posts: 1091
Has anyone found a use for...
« Reply #19 on: July 09, 2006, 12:37:15 PM »
X-52 here mine is set to gear and breaks so far....   Some times I set one of the axis for a macro, one time I had it set so if I pushed up it would type
 "SHUT UP VIPER" on squad chan :)
From the ashes of the old we rise to fly again. Behold The Phoenix Wing!

Offline Grits

  • Platinum Member
  • ******
  • Posts: 5332
Has anyone found a use for...
« Reply #20 on: July 09, 2006, 12:47:24 PM »
I've never used my micro stick because unlike the rest of my CH setup, it broke the first time I touched it and I just ignore it now.