-
Posts
90 -
Joined
-
Last visited
About Exo7
- Birthday 09/27/1979
Personal Information
-
Flight Simulators
DCS World : RAZBAM M2000C
-
Location
Paris, France
-
Interests
Simulators, programing,
-
Occupation
System and network administrator
-
Major Announcement: New software to to connect panels to DCS
Exo7 replied to FSFIan's topic in Home Cockpits
Hi javitronk, First, please open a new thread for your question, this post only for annoucement. -
Salut Ergo, Merci pour ta réponse. J'ai effectivement vu ce "prérequis" --> Windows 10. Et c'est ce qui m'a bloqué. Je n'aime pas du tout cette version de Windows au même titre que le 8 ou 8.1.. Vu le prix proposé pour le Black Friday (399€ avec les 2 capteurs + touch), j'ai sauté sur l'occasion. Par contre je suis curieux de voir ce que la "réalité mixée" amène (ou amènera) pour les simpiteurs. En attendant le Rift me procure de nouvelles sensations fortes et pour le moment cela me convient. Je pense que nous verrons d'ici 2018, de nombreuses améliorations comme la 4K par exemple, et a ce moment, je verrais pour changer de casque et de Windows...:cry: @++ ------------------------------------------------------------------------------------------------------ EN : Hi Ergo, Thank you for your answer. I actually saw this "prerequisite" -> Windows 10. And that's what blocked me. I really don't like this version of Windows. Given the price offered for Black Friday (399 € with 2 sensors + touch), I jumped at the chance. By cons I am curious to see what the "mixed reality" brings (or going to bring) for the simpitters. Meanwhile the Rift gives me new thrills and for now it suits me. I think we'll see by 2018, many improvements like 4K for example, and at that moment, I would see to change the helmet and Windows ...: cry: @ ++
-
Thank you for your interesting answer. So, I fell for the oculus, it works, good quality, existing community, and the "Black Friday's" promotions are really interesting...
-
Hi all, Is someone use Lenovo Explorer with DCS (not STEAM) and can give his opinion ? I'm actually use an Oculus (loaned by a friend), and i defenitively seduced by VR. So on the paper Lenovo is better than Oculus, but i don't find anyone using it. thanks.
-
Hi all, I have a question for Ian, I don't know if the question has ever been posed.. Have you ever considered a multi aircraft use ? In my squadron (2nd FFS), we have multiple guys that fly with many DCS modules and they are interested for generic panels (with general functions like landing gear, lights, canopy, etc...) i don't know how this can be implemented, maybe with the module library address ?? a test at the beginning of the Arduino sketch ? have you planned to add this feature to your roadmap ? Thx !!
-
Hey Zeus ! Z = 26 ? No ?
-
I think for distance we need AA T/R Tacan. So i don't think that the Mirage 2000-C has it.. no ?
-
I think you have to choose "aera" in ME and use condition "unit in the area" and "altitude"... to enable SAM IA unit..
-
Same here !!! Very disapointed...
-
I think you should try RS485... ;)
-
JTAC does not respond to wingmen
Exo7 replied to VAF [136] Striker's topic in Release Version Bugs and Problems (Read only)
JTAC does not respond to wingmen Yep, We have the same bug. JTAC only reply to the first unit (leader) of each group... But the lasing work for wingmens if the leader talk with JTAC. -
You're THE BOSS IAN.. LoSetCommand working well !!! ie for the Mirage MasterCaution use LoSetCommand(144, 1) and LoSetCommand(144, 0) to reset the state of the icommand, if not, you have to send 2 times the command to working. Now we have to found how to send it by DCSBIOS... Is this function can working ? local function send_iCommand(iCommandID) local k = iCommandID for i = k,k do LoSetCommand(i, 1) LoSetCommand(i, 0) end if yes how can i send it ? defineString ?
-
DCS BIOS & iCommand Hi Ian, Working on the M2000-C library, i have a question.. Many Switches / Push Button in the cockpit (ie MasterCautionReset or Master Arm Switch) are sended by "icommand" and doesn't react to arg command. the switch "graphically" moves, but nothing appends in regard of the function it's have to do. i have follow the icommand to the command_defs.lua file, and in this example (MasterCaution) the icommand "PlaneResetMasterWarning" is equal to 144. so i have try to send a 3144 command, but it's doesn't work.. do you know if it's possible to send an icommand via DCS BIOS, ans how to do that ? i mean i have to create a new function, but i don't know where to begin... thanks