Jump to content
Sign in to follow this  
guenseli

Problem with A2As Input Configurator

Recommended Posts

Hello dear P3D Fellows,

 

call me now a new member to your society :)

 

 

Everything is well, but I have problems with the A2A Input Configurator (IC)

 

If I assign an axis with the IC, I see full range in the IC's axis preview (from 0 to 100%), but in the VC itself I just get exactly 50% to 100% of the assigned lever movement.

 

 

The windows device window shows me also a normal behave, also the FSUIPC range of the lever is working as it should. Also disabling FSUIPC makes no difference (note that I have assigned all axis through FSUIPC)

I have also assigned axis via the P3D menue, also working well.

 

I have read now about similar problems to edit the standard.xml to "0" instead of "1" (I think it was the range - don't know it exactly now), but that makes no difference...

 

 

 

Does anybody have an idea where I loose my 50% axis range?

Is there anybody out with an A2A Addon and could try that for me, please?

(It happens with the P51, the P40 and the B17 - I have not tried others currently)

 

 

many thanks!


Guenter Steiner
--------------------------------------------------------------------------------------

Betatester for: A2A, LORBY, FSR-Pillow Tester
--------------------------------------------------------------------------------------

Share this post


Link to post

Cant really help but I recall reading something along these lines somewhere in my travels. I'm gonna guess over @ a2a's site. Still havent made up my mind on buying the accusim P-51. I fly the DCS Mustang but will probably get the A2A sooner or l8r. Do a search over at the A2A site I'm almost certain thats where I read something about its not working correctly in P3D.

Share this post


Link to post

try sensitivity at 127 and null 1 in prepar3d setup control

 


Banner_MJC9.png

 

Today is the most beautiful day of my life...

Share this post


Link to post

thanks for the answers,

 

@ctec: haven't found anything there ... will do a search again. If you remeber the post, please link it here. thanks!

 

 

@nicu

try sensitivity at 127 and null 1 in prepar3d setup control

 

no, that doesn't work.

I think that's it was was mentioned to edit the standard.xml: to set deadzones to zero.

 

I have it also tried in the P3D menu, but does not work ...


Guenter Steiner
--------------------------------------------------------------------------------------

Betatester for: A2A, LORBY, FSR-Pillow Tester
--------------------------------------------------------------------------------------

Share this post


Link to post

"Set your realism to "Hard". "

 

is already set!


Guenter Steiner
--------------------------------------------------------------------------------------

Betatester for: A2A, LORBY, FSR-Pillow Tester
--------------------------------------------------------------------------------------

Share this post


Link to post

Hi Guenter

 

In FSX, I don't use the IC to set up axis ( actually didnt think it might be better than the CH control manager, i've to try) but do use it for the P40 three position flaps and gear, hydraulic pump and stuff like oxygen mask, ventilation. Do they work in P3D ?


Dominique

Simming since 1981 -  4770k@3.7 GHz with 16 GB of RAM and a 1080 with 8 GB VRAM running a 27" @ 2560*1440 - Windows 10 - Warthog HOTAS - MFG pedals - MSFS Standard version with Steam

 

Share this post


Link to post

I have assigned my "normal" axis of course through FSUIPC.

 

But for cowl flaps, carb heat, flaps etc you have to use the A2A IC.

And it is not working here - that's my problem!


Guenter Steiner
--------------------------------------------------------------------------------------

Betatester for: A2A, LORBY, FSR-Pillow Tester
--------------------------------------------------------------------------------------

Share this post


Link to post

I have the same problem Guenter. I've assigned the slider on the top of the Saitek X52 throttle to the B-17s Manifold Pressure regulator, but only get half the movement. I've now decided to bypass the A2A joystick configurator altogether, and see if there is some way of using FSUIPC to assign two Saitek buttons or keyboard keys, to raise and lower the MP regulator settings. I've asked at the A2A B-17 support forum to see if anyone else has come up with a solution.


Surely not everybody was kung fu fighting.

https://rationalwiki.org

Share this post


Link to post

Günter, didn't I pass you the Lua scripts that I use to get the axis for the P-51(s), the P-40 and the Spitfires to work in P3D?

 

These are the P-51D scripts:

 


-- These are Prepar3D specific functions to overcome the
-- problem with the axis assignment and range of movement issues.

function Cabin_Vent(control, Vent_in)
Vent_Out = (Vent_in + 16383)/327.67
ipc.writeLvar("L:CabinVent", Vent_Out)
end

function Carb_Air(control, Air_in)
Air_Out = (Air_in + 16383)/327.67
ipc.writeLvar("L:Eng1_CarbAirSwitch", Air_Out)
ipc.display("Air = "..Air_Out, 1)
end

function Carb_Heat(control, Heat_in)
Heat_Out = 100- ((Heat_in + 16383)/327.67)
ipc.writeLvar("L:Eng1_CarbHeatSwitch", Heat_Out)
end

-- These are the Prepa3D specific event triggers.
-- The axis are assigned to 'send to an offset'
-- in the FSCIPC4 Controls menu.

event.offset(0x66D0,"SW","Carb_Air")
event.offset(0x66D2,"SW","Carb_Heat")
event.offset(0x66D4,"SW","Cabin_Vent")

 

You can probably use similar routines for any of the other axis that aren't working as they did in FSX.

It is just a matter of finding the correct scale factors for the various axis inputs vs the control output

to P3D.

 

And PaulK, I know you saw my reply in the A2A forum. :)

 

Paul


Wide-5.jpg

Share this post


Link to post

Paul,

 

yes, I have recieved your files.

What do not understand is, that you use them for buttons, not for axis?

 

 

Beside this I have made my own set of scripts (was not a big thing).

I have ceased P3d and refunded it as it has clearly some advanteges over FSX, but also some points, which have made me a bit crazy :P

 

The scripts are also useful for me for FSX as I have now abandoned the A2A Input configurator completely.

Advantage is, that I do not have to make the settings again at the next reinstall.

 

 

 

I have now a set of scripts A2A_Turbo, A2A_flaps, A2A_cowl etc and each is valid for all A2A addons.

So, you can assign A2A_Turbo to the B377 and the B17

(however, the phrase "turbo" would not be technically precise in every case)

 

 

Here is the script for the B17 / B377

 

-- Assignments valid for all A2A Addons


-- rounds the integer
function round(num)
num = tonumber(num)
if num == nil then return 0 end
   if num >= 0 then return math.floor(num+.5)
   else return math.ceil(num-.5) end
end
function round2 (num, idp)
 num = tonumber(num)
 if num == nil then return 0 end
 local mult = 10^(idp or 0)
 return math.floor(num * mult + 0.5) / mult
end
acftname = ipc.readSTR("3D00", 35)
------------------------------------------------------------- B377
-- Turbo lever
if string.find(acftname,"Stratocruiser",0,true)
then
var = round((ipcPARAM+16384)/32768*100)
ipc.writeLvar("L:LeverTurbocharger", var)
--ipc.display(var)
--ipc.sleep(50)
-------------------------------------------------------------  B17
elseif string.find(acftname,"B-17G",0,true)
then
var = round((ipcPARAM+16384)/32768*100)

if ipc.readLvar("FullDial") == 0 then
 if var >= 80 then var = 80
 end
end
--ipc.display(var)
--ipc.sleep(50)
ipc.writeLvar("L:DialTurbocharger", var)

end

 

 

How to:

 

- Open Editor (not word, etc!)

- Copy and paste this into it

- save it into your modules folder with filesname LUA (e.g. A2A_Turbo.LUA)

- start FSX/P3D and get into FSUIPC menu (registered version of course)

- choose the axis you want assign and select FSX axis (or however it is named there)

- now choose in the drop down menu the lua script under "lua A2A_Turbo"


Guenter Steiner
--------------------------------------------------------------------------------------

Betatester for: A2A, LORBY, FSR-Pillow Tester
--------------------------------------------------------------------------------------

Share this post


Link to post

Guenter, your A2A_Turbo.LUA works perfectly. I was initially going to use buttons or keys to increase or decrease the Manifold Pressure dial, but I think I will stick with this for now, if only because it means I can stop fiddling around with settings and maybe actually do some flying.

 

Paul, I'm going to hang on to what you said over at the A2A forum because I might still experiment with using keys instead of the slider. One thing I would like to do is use the slider for view zooming, which I know how to effect from Pete Dowson's support forum, in which case your button solution will be needed.

 

Gentlemen, thanks enormously for your help.


Surely not everybody was kung fu fighting.

https://rationalwiki.org

Share this post


Link to post

Günter,I have a limited number of axis and by using the FSUIPC4 conditional

programming I have an UNLIMITED number of buttons :)

 

I have 8 'modes' I think, for the B-17. That is, each button/switch has 8 possible assignments

depending upon the value in 0x66C0.

 

You can't do that with axis as there is no way to put an axis back to the state

it was in when you assigned it a new function and moved it. With buttons, you

are just changing L:Vars and they 'stay where you put them' until decide

to change them :)

 

BTW, PaukK, Günter's B-17 Turbo script is pretty much the same as mine :)

Read the axis, scale it to 0 to 100 and limit it to 80 if the l9imit switch is

in place.

 

Hopefully, with our discussions here, we have enlightened some others that may

have been having problems. One sure thing comes out of all this.... a registered

version of FSUIPC4 pays for itself in no time by relieving the stress of trying to

get things to work across the FSX/P3D boundary and just within FSX as well!

 

Paul


Wide-5.jpg

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
  • Tom Allensworth,
    Founder of AVSIM Online


  • Flight Simulation's Premier Resource!

    AVSIM is a free service to the flight simulation community. AVSIM is staffed completely by volunteers and all funds donated to AVSIM go directly back to supporting the community. Your donation here helps to pay our bandwidth costs, emergency funding, and other general costs that crop up from time to time. Thank you for your support!

    Click here for more information and to see all donations year to date.
×
×
  • Create New...