![]() |
#281
|
|||
|
|||
![]() Quote:
CH Control Manager doesn't have to run in the background. When you download your map to your devices, you can close CH CM. The map is on/in your devices at that point. If you decide at some point that you wanna experiment more with modes/shift keys and CH CM, I can give you my command file so you don't have to set one up yourself. cheers, -b |
#282
|
|||
|
|||
![]()
I highly recommend to give this a try:
http://www.ch-hangar.com/files/Docs/..._Guide_III.pdf Edit, if you have some problems with acrobat... http://simhq.net/downloads/technology/CM_D3.zip It is like always, if nothing works read the manual and here you have a quite good manual. You might think that what you have is enough; still there are plenty of possibilities still to be discovered. If I could anyone can. Salutes Majo. Last edited by Majo; 02-28-2011 at 06:42 PM. |
#283
|
|||
|
|||
![]()
absolutely love the pedals,so smooth after using either stick or throttle for rudder,
![]() |
#284
|
|||
|
|||
![]()
I ordered my saitek combat rudders last night, hopefully get them this week if they have in stock. It says on the stores site that they do but i have been bitten to many times to bekieve them. Now to start some serious saving for a warthog to go with them.
After reading the reviews im more than ever aware now of the slack and difficulty aiming with my x52, even though i have various things, bits of cd, matchsticks ect, stuffed in to try and stiffen the tension. Cheers |
#285
|
|||
|
|||
![]()
lol Sauf, i found that with the x52,hope you get your peds quickly
|
#286
|
|||
|
|||
![]() Quote:
Thx in advance |
#287
|
|||
|
|||
![]()
Np mate, i found the same problem, will post thoughts when i get them.
|
#288
|
|||
|
|||
![]() Quote:
Code:
//--------------------------------------------------------------- //Mini Stick Rotary TRIM //--------------------------------------------------------------- // Rudder Iinitial Centering IF( FIRSTSCAN ) THEN CMS.A2 = 128; CMS.A1 = 128; A1 = 128; //CONTROL VALUE FOR CMS.A2 (128 TO 0) A2 = 128; //CONTROL VALUE FOR CMS.A2 (128 TO 255) A3 = 128; //CONTROL VALUE FOR CMS.A1 (128 TO 0) A4 = 128; //CONTROL VALUE FOR CMS.A1 (128 TO 255) A10 = 50; // THIS IS THE INCREMENTAL FACTOR FOR Y AXIS. THE HIGHER THE SLOWER MOVEMENT THRU AXIS ENDIF A20 = 0; // Y AXIS A30 = 0; // X AXIS IF ([JS2.A2-128 < 0]) THEN A20 = -1* (JS2.A2 - 128); ELSE A20 = (JS2.A2-128); // Y AXIS ENDIF IF ([JS2.A1-128 < 0]) THEN A30 = -1* (JS2.A1-128); ELSE A30 = (JS2.A1-128); //X AXIS ENDIF // Y AXIS IF ([A20 > A30]) THEN CMS.A1 = CMS.A1; SEQUENCE WHILE ([JS2.A2 < A1] AND [JS2.A2 <=121]); IF ([CMS.A2 + (JS2.A2 - 128)/A10 < 0]) THEN CMS.A2 = 0; ELSE CMS.A2= CMS.A2 + (JS2.A2 - 128)/A10; ENDIF delay(1); IF ([JS2.A2 >= 121] AND [JS2.A2 < 135]) THEN A1=0; ELSE IF ([JS2.A2 > A1]) THEN A1 = A1; ELSE A1= JS2.A2; ENDIF ENDIF ENDSEQUENCE A1=128; SEQUENCE WHILE ([JS2.A2 > A2] AND [JS2.A2 >= 135]); IF ([CMS.A2 + (JS2.A2 - 128)/A10 > 255]) THEN CMS.A2 = 255; ELSE CMS.A2= CMS.A2 + (JS2.A2 - 128)/A10; ENDIF delay(1); IF ([JS2.A2 >= 121] AND [JS2.A2 <= 135]) THEN A2= 255; ELSE IF ([JS2.A2 < A2]) THEN A2 = A2; ELSE A2= JS2.A2; ENDIF ENDIF ENDSEQUENCE A2=128; ENDIF // X AXIS IF ([A20 < A30]) THEN CMS.A2 = CMS.A2; SEQUENCE WHILE ([JS2.A1 < A3] AND [JS2.A1 <=121]); IF ([CMS.A1 + (JS2.A1 - 128)/A10 < 0]) THEN CMS.A1 = 0; ELSE CMS.A1= CMS.A1 + (JS2.A1 - 128)/A10; ENDIF delay(1); IF ([JS2.A1 >= 121] AND [JS2.A1 < 135]) THEN A3=0; ELSE IF ([JS2.A1 > A1]) THEN A3 = A3; ELSE A3= JS2.A1; ENDIF ENDIF ENDSEQUENCE A3=128; SEQUENCE WHILE ([JS2.A1 > A4] AND [JS2.A1 >= 135]); IF ([CMS.A1 + (JS2.A1 - 128)/A10 > 255]) THEN CMS.A1 = 255; ELSE CMS.A1= CMS.A1 + (JS2.A1 - 128)/A10; ENDIF delay(1); IF ([JS2.A1 >= 121] AND [JS2.A1 <= 135]) THEN A4= 255; ELSE IF ([JS2.A1 < A2]) THEN A4 = A4; ELSE A4= JS2.A1; ENDIF ENDIF ENDSEQUENCE A4=128; ENDIF if (js1.b10) then cms.a2 = 128; //button to center axis 2 endif if (js1.b8) then cms.a1 = 128; //button to center axis 1 endif everyone always complains about the rotaries, well, the above gives you rotaries. |
#289
|
|||
|
|||
![]()
thanks for that but i dont understand where all that goes?
|
#290
|
|||
|
|||
![]() Quote:
you can combine the stick, throttle, and pedals all into CM device 1. Doing this allows the mode functionality to really shine too as it triples your options. |
![]() |
|
|