Jump to content

Komat7

Frozen-Inactivity
  • Content Count

    3
  • Donations

    $0.00 
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Komat7

  • Birthday 09/09/1968

Profile Information

  • Gender
    Male
  • Location
    Paris

Flight Sim Profile

  • Commercial Member
    No
  • Online Flight Organization Membership
    VATSIM
  • Virtual Airlines
    Yes

Recent Profile Visitors

509 profile views
  1. Hi, a new version compatible with FSX Steam Edition plus FSX Xpack is now available still in the AVSIM library with the link above. Marc
  2. Hi Captains, this post is for Opencockpits hardware owners and PMDGs or Level-D airplane users. I made a new free application who allow simple communication between Level-D 767, PMDG 7s (737, 777, 747) and Opencockpits/SIOC modules. It's quite simple to use and there is a little quick reference guide in the download. Feel free to post your feedbacks or questions. This a free application with no pro support but i'll try to answer. It works on my FSX-SE version. I have no other FSX version for testing it, but feedbacks are welcome. Download SiocBoeing: SiocBoeing Download link from AVSIM library Marc
  3. Hello everyone interested by this developpers topic, specially LINDA's I would like to know if it will be, or how it's, possible from LINDA lua script to call C SDK addons functions directly by using the lua ffi library (luaJIT) ? Maybe it's already possible with the LINDA lua editor. I'am not an expert with it. Tried but the ffi library is not loaded or not include and it's throw a nil exception. this simple lua script works in IDE like ZeroBrane studio. It calls LevelD 767 SDK functions directly. This is really handy: local ffi = require("ffi") ffi.cdef [[ long LVLDSession(int action, int version); long SendLVLDCommand(int action, int value); ]] name = "D:\\Program Files (x86)\\ZeroBraneStd\\myprograms\\LVLDSDK" clib = ffi.load(name) result = clib.LVLDSession(1, 202) -- open LVLDSDK Session result = clib.SendLVLDCommand(32,1); -- send command OVRD LIGHT ON result = clib.LVLDSession(0, 202) -- close LVLDSDK Session print("LVLDSession return:" .. result) any help appreciate Marc
×
×
  • Create New...