algerad3 Posted September 16, 2012 Author Posted September 16, 2012 (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 September 16, 2012 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
chrilith Posted September 18, 2012 Posted September 18, 2012 (edited) Hi guys, I just created some new forums for this specific topic. You can find them here (on the bottom): http://forums.chrilith.com/ Feel free to ask question, add tutorials and so on... Edited September 18, 2012 by chrilith
Cowboy10uk Posted March 30, 2013 Posted March 30, 2013 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:
algerad3 Posted March 30, 2013 Author Posted March 30, 2013 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
Cowboy10uk Posted March 31, 2013 Posted March 31, 2013 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:
chrilith Posted June 5, 2013 Posted June 5, 2013 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...)
Flegma Posted June 5, 2013 Posted June 5, 2013 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?
chrilith Posted June 5, 2013 Posted June 5, 2013 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
Recommended Posts