Jump to content

Recommended Posts

Posted (edited)

We are moving to How to threads !!!!!!!!!

 

algerad3; isn't it better to open a new thread to get people's attention for this work? :)

 

 

I agree, but now that we are at this point in the project under which section?

Input out put , mods and apps, how to ..... Crap , I will move all this stuff to how to section.( self Explanatory I am sure)!!!

http://forums.eagle.ru/showthread.php?t=94174

Good Idea Devrim, Call it done. ;)

Edited by algerad3
Added link to new home

[sIGPIC][/sIGPIC] CPIAS FOR Saitek:

Saitek Flight instrument panels and X-52 pro mfd scripts for Dcs

 

http://forums.eagle.ru/showthread.php?t=94174

  • 6 months later...
Posted

Hi guys, just searching for info about the Saitek pro panels and DCS and found this post. Was just wondering if anyone has got the radio panel or any other pro panels working with DCS World yet.

 

Would love to be able to set my radios with my pro panel.

 

Cowboy10uk

 

 

[sIGPIC][/sIGPIC]

 

Fighter pilots make movies, Attack pilots make history, Helicopter pilots make heros.

 

:pilotfly: Corsair 570x Crystal Case, Intel 8700K O/clocked to 4.8ghz, 32GB Vengeance RGB Pro DDR4 3200 MHZ Ram, 2 x 1TB M2 drives, 2 x 4TB Hard Drives, Nvidia EVGA GTX 1080ti FTW, Maximus x Hero MB, H150i Cooler, 6 x Corsair LL120 RGB Fans And a bloody awful Pilot :doh:

Posted

Cowboy10uk....

We moved this thread to this location http://forums.eagle.ru/showthread.php?goto=newpost&t=94174

 

I got a few things to work on the Fip. In the last example Lua file posted , I was able to control the radios with the x52 pro. Have a dig through. I also replied to your question on the other thread.

Hope that helps.

[sIGPIC][/sIGPIC] CPIAS FOR Saitek:

Saitek Flight instrument panels and X-52 pro mfd scripts for Dcs

 

http://forums.eagle.ru/showthread.php?t=94174

Posted

Thanks for that mate. Damn I forgot I had already asked that question before. :) sorry for that. But thankyou for the answer. I'll work through the other thread and see if I can get it working.

 

Cowboy10uk

 

 

[sIGPIC][/sIGPIC]

 

Fighter pilots make movies, Attack pilots make history, Helicopter pilots make heros.

 

:pilotfly: Corsair 570x Crystal Case, Intel 8700K O/clocked to 4.8ghz, 32GB Vengeance RGB Pro DDR4 3200 MHZ Ram, 2 x 1TB M2 drives, 2 x 4TB Hard Drives, Nvidia EVGA GTX 1080ti FTW, Maximus x Hero MB, H150i Cooler, 6 x Corsair LL120 RGB Fans And a bloody awful Pilot :doh:

  • 2 months later...
Posted

There is an insttrument example in the archive but without FSUIPC stuff.

 

Take tis example an lookat the documentation of FSUIPC and its LUA integration toknow how to register for a given FS variable update (altimeter...)

Posted
There is an insttrument example in the archive but without FSUIPC stuff.

 

Take tis example an lookat the documentation of FSUIPC and its LUA integration toknow how to register for a given FS variable update (altimeter...)

 

I'm using X52 Pro

 

This is from altitude.lua

require("saitek");
require("gd");

I suppose

requre("gd");

is not needed for X52 Pro and I must change for example saitek.SetLed("SFIP", 1, 1, 7, false); to

saitek.SetLed("X52P", 1, 1, 7, false);

And I must replace saitek.SetImage to saitek.AddPage(model, index, page, activate)

 

and to add this from example

-- Callback function to update air speed
function setValues(offset, value)
if (offset == 0X3324) then
	altimeter = value;
elseif (offset == 0x0330 and value ~= 0) then
	kollsman = math.ceil(value / 16 * 0.000295299830714 * 10) / 10;
	kollsman = math.max(kollsman, 28.1);
	kollsman = math.min(kollsman, 31.9);
	print(value);
end

redrawAll();
end

redrawAll();
-- Register to receive updates
event.offset(0X3324, "UW", "setValues");
event.offset(0X0330, "UW", "setValues")

 

Did this way will work?

Posted

Something like that. I must admin that I haven't use it for awhile :)

 

Image should be replaced by String as Page is available on FIP too

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...