Official Fulqrum Publishing forum

Official Fulqrum Publishing forum (http://forum.fulqrumpublishing.com/index.php)
-   Controls threads (http://forum.fulqrumpublishing.com/forumdisplay.php?f=194)
-   -   Hotas setup for the upcoming Cliffs of Dover (http://forum.fulqrumpublishing.com/showthread.php?t=18347)

blampars 02-28-2011 04:47 PM

Quote:

Originally Posted by ElAurens (Post 229284)
My CH gear for IL2 is configured with the in game interface.

It was easy, which the CH Contol Monitor certainly is not, and I don't have another program running in the background.

The only problem with configuring it in game is you effectively limit yourself to 1 mode for your buttons, not to mention shift buttons which I find even more useful than modes. Granted there are a lot of buttons to use, but it's nice to have modes IMO.

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

Majo 02-28-2011 06:34 PM

If I could anyone can...
 
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.

SsSsSsSsSnake 03-04-2011 10:55 PM

absolutely love the pedals,so smooth after using either stick or throttle for rudder,:)

Sauf 03-04-2011 11:09 PM

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

SsSsSsSsSnake 03-05-2011 05:59 AM

lol Sauf, i found that with the x52,hope you get your peds quickly

Hecke 03-05-2011 07:56 AM

Quote:

Originally Posted by Sauf (Post 230883)
I ordered my saitek combat rudders last night, hopefully get them this week if they have in stock.
Cheers

Could you please make a little "review" of them. I'm also thinking of buying them but there seem to be no reviews in the internet yet.
Thx in advance

Sauf 03-05-2011 08:21 AM

Quote:

Originally Posted by Hecke (Post 230950)
Could you please make a little "review" of them. I'm also thinking of buying them but there seem to be no reviews in the internet yet.
Thx in advance

Np mate, i found the same problem, will post thoughts when i get them.

madrebel 03-05-2011 08:43 PM

Quote:

Originally Posted by ghodan (Post 216536)
But i dont like the CH pro throttle: Almost no resistance and flat travel.And no rotary's.

this
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

turns the mini stick into basically a two way rotary. you need to set a decent sized dead band as the mini sticks are notoriously bad at centering but this is just as responsive as my old x45s rotaries. the other thing you need to do is unmap the ministick completely (dx axis = none) then go into the cms controls tab and set cms 1 and cms 2 as cm device1 axis', mine are set to U and V axis.

everyone always complains about the rotaries, well, the above gives you rotaries.

SsSsSsSsSnake 03-05-2011 08:52 PM

thanks for that but i dont understand where all that goes?

madrebel 03-05-2011 09:17 PM

Quote:

Originally Posted by blampars (Post 228112)
Combatstick tab, mode 1, dx device drop down menu, CM Device 1.
Pro Pedals tab, mode 1, dx device drop down menu, CM Device 2.
Throttle tab, Mode 1, dx device drop down menu, CM Device 3.

why do this when you can create one logical controller?

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.


All times are GMT. The time now is 06:41 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.