Jump to content
The simFlight Network Forums

Demon

Members
  • Posts

    62
  • Joined

  • Last visited

Everything posted by Demon

  1. An update for the next guy unable to access Lvars via FSUIPC-WASM while also getting Events/Simvars from Simconnect. It can now be done in SimConnect: https://devsupport.flightsimulator.com/questions/16496/setting-xmlvar-adf-mode-using-addtodatadefinition.html Thanks for FSUIPC7 and everything else around it! Cheers! Robert
  2. An update for the next guy that can't use VB.NET for whatever reason, you can update an Lvar directly from SimConnect. Got my answer from the gurus on the subject: https://devsupport.flightsimulator.com/questions/16496/setting-xmlvar-adf-mode-using-addtodatadefinition.html Thanks for your help though Paul. Cheers! Robert
  3. I used x64 'cause that's what the MSFS SDK encouraged. I'm trying to get the AddToDataDefinition command working in my standalone C++. SimConnect_AddToDataDefinition(hSimConnect, DEFINITION_1, "L:XMLVAR_ADF_Mode", "number", SIMCONNECT_DATATYPE_FLOAT64, 0, 0); MSFS SDK Docs say it can be used to GET/SET an Lvar. I just haven't figured out the proper syntax yet. Tried a gazillion variations, nothing worked. I bet I'm missing something else That RPN comments seems like some sort of red herring to make us chase after our tail. 😄 I'm running FSUIPC7 in parallel to check Lvar content. Robert
  4. Paul, I hadn't really understood your comment about calculator code until I saw this just now: - HBilliet on forums.flightsimulator.com According to him, CC can process Events, Simvars and Lvars. Exactly what I need. Off to find documentation. 🙂 Robert "I understand quickly, you just have to explain often"
  5. Does someone have an example of a working program? I'd an ordinary GUI with just need one call to WASM, and one to SimConnect (ie: toggle Parking Brake), ideally in C++ but beggars can't be chosers. I can get the 59 Events/SimVars in the SDK examples working fine in my simple GUI using C++. I can get Offsets for my 3 variables working fine in Paul Henty's FSUIPCclientDLLforNET or MSFSVariableServices using VB.NET. I can kinda get at those 3 variables in the WASMClient-Master using C++, yeah, using the GUI and that's it. My problem is that extracting code from the WASMClient to work in my rinky-dink GUI is way over my head. And converting Paul's VB.NET into C++ is also over my capacities. Hence why I'm asking if anyone has an example doing both functions; using SimConnect and WASM. Or is that physically impossible? I can't even use a keystroke for the ADF Mode Selector for the Cessna 152 (I saw nothing on the keyboard options). And anyways I'll have the same problems if not worse for the larger planes. These are the options I've found to date (that C++ stand-alone works just fine and I understand what's going on, mostly): Robert
  6. I tried to adapt the FSUIPC_Client to my needs, but I hit a snag and John doesn't know how to fix that. He sends me to you. 😄 Seriously, I wouldn't know a framework if it kicked me in the backside.
  7. I listed the framework in my top post in case it helped in debugging. I have no clue what a framework eats for lunch. 😄 The only framework.h I see in the code, is the one listed in the #INCLUDES on FSUIPC_Client. I kept that only to do whatever it is you're doing. Robert "dazed..."
  8. I redownloaded FSUIPC_WAPID.dll and now it works. Mine dated back to 2022-09-26 (or something like that). 🙂 I fired up FSUIPC7 to check, and those load properly. I also fired up the FSUIPC_WASM standalone utility just to confirm that WAPI was functioning properly. I downloaded the example from the site, left it as is and pressed compile. I press Log Lvars even after a few minutes and still nothing. FSUIPC_WAPID.dll is still in your folder. I deleted it for fun, and your app still started and loaded 000 lvars. I would have expected some sort of "404 - not found" error. Robert "Lost in Space" EDIT: I checked community package and it has this plus an INI in parent folder.
  9. Win10 Home v10.0.19045 FSUIPC 7 VS 2022 64bit v17.5.4 NET framework 4.8.09037 I'm getting NULLPTR error: And errors on my main program (worked previously): I copied the Header files directly into my folder, also copied in the FSUIPC_WAPI folder (with include, lib and 6 files) and Added Existing Items from Header tab to my Solution: VS configs, your Client on left, mine on right: The extra SimConnect.lib and user32.lib is from my original GUI tests. I'm not sure which of your includes are only required to drive that Menu-driven GUI. Robert
  10. Ok, to start there has to be some process to import the files in your FSUIPC_WAPI folder into my VS2022 Solution. I uploaded my current code to github, including your WAPI folder: LINK DELETED https://github.com/KaptainKrash/MSFSinterface.git My first objective was to connect to FSUIPC_WAPI and change Lvar 058 between a 0 and a 1. I kept the 2 connections buttons separate to help in debugging. I've tried a few things and failed miserably. I'm still at the "must follow detailed instructions level". I also tried to strip your Client program, but I don't need all the menu-driven material; it was beyond my lmits to convert to a basic GUI. Robert
  11. Thanks, this is what I wanted confirmation. I assume any changes in existing IDs by Asobo would mess up a whole bunch of people with custom interfaces. Robert
  12. Hi, (using WASMclient as template) Is it safe to design an app that uses the Lvar ID as a search key? Or should I search the list for a given Name instead? Is that ID a permanent value, or can it change in the future? In my case, my app will receive an identifier from a USB device. That identifier will relate with a given control mapped by me (SimConnect and FSUIPC_WASM). For the Cesssna 152, the 3 variables that concern me are: 051 XMLVAR_YokeHidden1 052 XMLVAR_YokeHidden2 058 XMLVAR_ADF_Mode I remember reading a comment but don't remember more than a user asking "if that number in front was going to stay", and you might have alluded that it might be removed. I just don't remember if that was about this ID, it wasn't what I was searching for and kept scrolling so it's vague. Currently, the FSUIPC_WASM Gets Lvars by ID or by Name, but the actual Set is done by ID. I'm still fuzzy on how that ID is assigned. It appears by sequence. Thank the Visual Studio gods for a straightforward debugger. 🙂 Robert
  13. Yeah, that's what I'm looking at now. I'm a main-frame programmer by trade that has dabbled in VB6, and now putzing with VS2022 and C++. At least I was able to get the MSFS SDK code examples in C++ working to use the SimConnect events. I'm just stuck on identifying in WASMclient exactly what parts of code are required to use the API (getting the data area populated, reading/setting the Lvars, etc). I don't need the Hvars and other stuff. Looks like I'm off to StackOverflow to beg for help. 😄 Thanks again for your interface and utilities; they help a lot of people get things done. Robert
  14. GAAAAAAA, I was compiling.... It built just fine using BUILD. Thanks!
  15. Win10 Home v10.0.19045 FSUIPC 7 VS 2022 64bit v17.5.4 NET framework 4.8.09037 My system path: Net info: VS config: I've built several x64 sample projects recently, including Paul Henty's stuff. I don't know if WAPIMaster needs to be compiled as win32, or if I'm accidentally building it as Win32. I can't find any relevant reference to x86 or x64 in the forum, and the download page doesn't say which; only mentions x64 for FSUIPC. I just need a kick in the right direction. Robert
  16. Good, I was afraid I had not initialized "something" properly in Visual Studio or VB (new at this stuff). I manage most controls via SimConnect Events in C++ using the examples from the MSFS SDK. The only remaining controls were the Transponder Mode Selector, ADF Mode Selector and making the yokes disappear. Using WASMclient for the Lights was just a test to help debug my problem. My console will display all switch/button positions; having the positions reflected in-game is just nice-to-have. I'm making a USB-device that will control all switches/buttons/knobs; I'm fed up with those keyboard controls. I was over-whelmed by the complexity of the WAPI master-client; the windows front-end was over my ability to adapt the code. The WAPI-master code example seems easier to use, but I keep getting an error on initial build (starting a separate thread). Yeah, it didn't dawn on me to attach the log files. D'uh... And thanks for the quick reply.
  17. Win10 Home v10.0.19045 FSUIPC 7 VS 2022 64bit v17.5.4 NET framework 4.8.09037 Hi, THIS WORKS NORMALLY. I can make the 2 yokes appear/disappear instantly on the default Cessna 152 cockpit using these XMLvars on WASMClient version 0.5. XMLVAR_YokeHidden1 = 0.000000 XMLVAR_YokeHidden2 = 1.000000 THIS DOESN'T WORK. When I change ADF Mode Selector within WASMClient from TEST (3) to ADF (2), the switch in the cockpit doesn't get updated. If I hover it still says TEST (3). If I RELOAD the Lvars and LIST them again, it displays the new value (2). I get a similar problem with the CABIN LIGHTS; they update within WASMClient, but the image is not refreshed in-game. The CABIN LIGHT toggle does not get updated, but unlike the ADF Mode Selector, it now shows as ON when I hover. EDIT: WASMClient.log Default.cpp MylogStuff.cpp WASMClient.cpp K:\Project_v2\WASMClient-master\WASMClient\WASMClient.cpp(407,26): warning C4244: 'initializing': conversion from 'LRESULT' to 'int', possible loss of data K:\Project_v2\WASMClient-master\WASMClient\WASMClient.cpp(423,26): warning C4244: 'initializing': conversion from 'LRESULT' to 'int', possible loss of data K:\Project_v2\WASMClient-master\WASMClient\WASMClient.cpp(472,32): warning C4244: 'initializing': conversion from 'LRESULT' to 'int', possible loss of data K:\Project_v2\WASMClient-master\WASMClient\WASMClient.cpp(524,24): warning C4244: 'initializing': conversion from 'LRESULT' to 'int', possible loss of data Generating Code... FSUIPC_WAPI_debug.lib(WASMIF.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(WASMIF.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(SimConnectClient.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(SimConnectClient.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(ClientDataArea.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(ClientDataArea.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(CDAIdBank.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(CDAIdBank.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(Logger.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(Logger.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(commClient.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(commClient.obj)' or at ''; linking object as if no debug info FSUIPC_WAPI_debug.lib(client_proxy.obj) : warning LNK4099: PDB '' was not found with 'FSUIPC_WAPI_debug.lib(client_proxy.obj)' or at ''; linking object as if no debug info WASMClient.vcxproj -> K:\Project_v2\WASMClient-master\x64\Debug\WASMClient.exe EDIT #2: FSUIPC_WASMIF.log Mon Apr 17 2023 17:54:44.393 [INFO]: **** Starting FSUIPC7 WASM Interface (WAPI) version 1.0.2 (WASM version 1.0.2) using connection -1 Mon Apr 17 2023 17:54:44.394 [INFO]: Connected to MSFS Mon Apr 17 2023 17:54:49.783 [INFO]: We have 085 lvars: Mon Apr 17 2023 17:54:49.784 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 Mon Apr 17 2023 17:54:49.784 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.784 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 Mon Apr 17 2023 17:54:49.784 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 Mon Apr 17 2023 17:54:49.784 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 Mon Apr 17 2023 17:54:49.784 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=012 Aera_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=013 isDataFieldActive = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=014 isCompassDisplayed = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=020 AS3000_Brightness = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 Mon Apr 17 2023 17:54:49.785 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=036 switchAuxSys = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=037 switchAttGyro = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=038 switchturnCoord = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=039 switchLtsCabinPass = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=040 switchGenerator = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=042 comAdjInit = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=043 XmsnPressCorr = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=044 XmsnPressInit = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=045 XmsnTempCorr = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=051 XMLVAR_YokeHidden1 = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=052 XMLVAR_YokeHidden2 = 1.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=054 ParkingBrake_Position = 100.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=058 XMLVAR_ADF_Mode = 2.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=062 INSTRUMENT_ADF = 3.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 Mon Apr 17 2023 17:54:49.786 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=066 LIGHTING_STROBE_1 = 0.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=068 LIGHTING_TAXI_1 = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 95.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=072 LIGHTING_CABIN_1 = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=074 HourMeter_State = 2.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=076 KX155A_1_State = 2.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=078 KX155A_2_State = 2.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=080 C300ADF_State = 2.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 Mon Apr 17 2023 17:54:49.787 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: We have 085 lvars: Mon Apr 17 2023 18:07:49.133 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=012 Aera_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=013 isDataFieldActive = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=014 isCompassDisplayed = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=020 AS3000_Brightness = 0.000000 Mon Apr 17 2023 18:07:49.133 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=036 switchAuxSys = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=037 switchAttGyro = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=038 switchturnCoord = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=039 switchLtsCabinPass = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=040 switchGenerator = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=042 comAdjInit = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=043 XmsnPressCorr = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=044 XmsnPressInit = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=045 XmsnTempCorr = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=051 XMLVAR_YokeHidden1 = 0.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=052 XMLVAR_YokeHidden2 = 1.000000 Mon Apr 17 2023 18:07:49.134 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=054 ParkingBrake_Position = 100.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=058 XMLVAR_ADF_Mode = 3.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=062 INSTRUMENT_ADF = 3.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=066 LIGHTING_STROBE_1 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=068 LIGHTING_TAXI_1 = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 95.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=072 LIGHTING_CABIN_1 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=074 HourMeter_State = 2.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=076 KX155A_1_State = 2.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=078 KX155A_2_State = 2.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=080 C300ADF_State = 2.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 Mon Apr 17 2023 18:07:49.135 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 Mon Apr 17 2023 18:07:49.136 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 Mon Apr 17 2023 18:08:19.044 [INFO]: We have 085 lvars: Mon Apr 17 2023 18:08:19.045 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=012 Aera_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=013 isDataFieldActive = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=014 isCompassDisplayed = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=020 AS3000_Brightness = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 Mon Apr 17 2023 18:08:19.045 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=036 switchAuxSys = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=037 switchAttGyro = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=038 switchturnCoord = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=039 switchLtsCabinPass = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=040 switchGenerator = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=042 comAdjInit = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=043 XmsnPressCorr = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=044 XmsnPressInit = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=045 XmsnTempCorr = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=051 XMLVAR_YokeHidden1 = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=052 XMLVAR_YokeHidden2 = 1.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=054 ParkingBrake_Position = 100.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=058 XMLVAR_ADF_Mode = 3.000000 Mon Apr 17 2023 18:08:19.046 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=062 INSTRUMENT_ADF = 3.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=066 LIGHTING_STROBE_1 = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=068 LIGHTING_TAXI_1 = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 95.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=072 LIGHTING_CABIN_1 = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=074 HourMeter_State = 2.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=076 KX155A_1_State = 2.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=078 KX155A_2_State = 2.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=080 C300ADF_State = 2.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 Mon Apr 17 2023 18:08:19.047 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 EDIT 3: FSUIPC7.log ********* FSUIPC7, Version 7.3.19 (22nd March 2023) by John Dowson ********* Steam installation detected: Checking for FS path in 'C:\Users\Papa\AppData\Roaming\Microsoft Flight Simulator\UserCfg.opt' FS path found = C:\Users\Papa\AppData\Roaming\Microsoft Flight Simulator\Packages\ WebSocket server found: C:\FSUIPC7\\Utils\FSUIPCWebSocketServer.exe Windows 10 Home 64 Bit reported as Build 19045, Release ID: 2009 (OS 10.0) Reading options from "C:\FSUIPC7\FSUIPC7.ini" Checking the Registrations now ... User Name="beeeeeeep" User Addr="beeeeeeep@hotmail.com" FSUIPC7 Key is provided WIDEFS7 not user registered, or expired 63 System time = 17/04/2023 15:03:51 63 FLT path = "C:\Users\Papa\AppData\Roaming\Microsoft Flight Simulator\" 63 Allowing calibration when not assigned with 'Send direct to FSUIPC Calibration' 63 Sound: Path= 63 Sound: EnumDevice=Primary Sound Driver 63 Sound: EnumDevice=Casque pour téléphone (HyperX Virtual Surround Sound) 63 ------------------------------------------------------------------- 78 Preset file 'C:\FSUIPC7\myevents.txt' not found [info only] 78 10116 Calculator Code presets have been loaded and are available for use 94 Registered HotKey 'InvokeFSUIPCOptionsKey' (key=0x46, modifier=0x1) 109 FS path = "C:\Users\Papa\AppData\Roaming\Microsoft Flight Simulator\Packages\" 109 ---------------------- Joystick Device Scan ----------------------- 109 Product= vJoy - Virtual Joystick 109 Manufacturer= Shaul Eizikovich 109 Serial Number= 2.1.9 109 Vendor=1234, Product=BEAD (Version 2.25) 594 GUIDs returned for product: VID_1234&PID_BEAD: 594 GUID= {82FE51B0-CE64-11ED-8002-444553540000} 594 Details: Btns=128, POVs=(0, 0, 0, 0), Cal=x00000000, Max=R16383,U16383,V16383,X16383,Y16383,Z16383 609 Product= CH PRO PEDALS USB 609 Manufacturer= CH PRODUCTS 609 Vendor=068E, Product=00F2 (Version 0.0) 609 GUIDs returned for product: VID_068E&PID_00F2: 609 GUID= {EF82F4D0-64E8-11EC-8003-444553540000} 609 Details: Btns=0, POVs=(0, 0, 0, 0), Cal=x00000000, Max=R0,U0,V0,X255,Y255,Z255 609 Product= CH THROTTLE QUADRANT 625 Manufacturer= CH PRODUCTS 625 Vendor=068E, Product=00FA (Version 0.0) 625 GUIDs returned for product: VID_068E&PID_00FA: 625 GUID= {B1B5BA70-64E8-11EC-8001-444553540000} 625 Details: Btns=12, POVs=(0, 0, 0, 0), Cal=x00000000, Max=R255,U255,V255,X255,Y255,Z255 625 Product= CH FLIGHT SIM YOKE USB 625 Manufacturer= CH PRODUCTS 625 Vendor=068E, Product=00FF (Version 0.0) 625 GUIDs returned for product: VID_068E&PID_00FF: 625 GUID= {CB705650-64E8-11EC-8002-444553540000} 625 Details: Btns=12, POVs=(0, 0, 0, 0), Cal=x00000000, Max=R0,U255,V255,X255,Y255,Z255 625 ------------------------------------------------------------------- 750 Device acquired for use: 750 Joystick ID = 0 (Registry okay) 766 0=vJoy Device 766 0.GUID={82FE51B0-CE64-11ED-8002-444553540000} 766 Device acquired for use: 766 Joystick ID = 3 (Registry okay) 766 3=CH PRO PEDALS USB 766 3.GUID={EF82F4D0-64E8-11EC-8003-444553540000} 766 Device acquired for use: 766 Joystick ID = 1 (Registry okay) 766 1=CH THROTTLE QUADRANT 766 1.GUID={B1B5BA70-64E8-11EC-8001-444553540000} 766 Device acquired for use: 766 Joystick ID = 2 (Registry okay) 766 2=CH FLIGHT SIM YOKE USB 766 2.GUID={CB705650-64E8-11EC-8002-444553540000} 766 ------------------------------------------------------------------- 766 LogOptions=20000000 0003122D 1156 Monitor IPC:0B46 (U8) = 0 1156 Monitor IPC:3122 (U8) = 0 30109 Simulator detected 183969 Starting WAPI (on MSFS connect, SimConnect started)... 183969 [INFO]: **** Starting FSUIPC7 WASM Interface (WAPI) version 1.0.2 (WASM version 1.0.2) using connection -1 183969 [INFO]: Connected to MSFS 184000 SimConnect_Open succeeded 184000 Running in "KittyHawk", Version: 11.0.282174.999 (SimConnect: 11.0.62651.3) 184000 MSFS version = 11.0.282174.999 184000 Initialising SimConnect data requests now 184000 Offset file 'C:\FSUIPC7\myOffsets.txt' not found (info only) 184000 Mapping custom control numbers 69632 - 84232 184000 Maximum number of custom events available is 1024 (defined by ini parameter MaxNumberOfCustomEvents) 184016 C:\Users\Papa\AppData\Roaming\Microsoft Flight Simulator\MISSIONS\Custom\CustomFlight\CustomFlight.FLT 184016 SimObjects\Airplanes\Asobo_C152\aircraft.CFG 184094 User Aircraft ID 1 supplied, now being used 184344 Aircraft loaded: running normally now ... 184344 Monitor IPC:0B46 (U8) = 4 184344 SimRead: 0B46="TRANSPONDER STATE:1" INT32: 4 (0x00000004) 184359 Maximum number of custom events available is 1024 (defined by ini parameter MaxNumberOfCustomEvents) 184359 Aircraft="Cessna 152 Asobo" 184359 System time = 17/04/2023 15:06:56, Simulator time = 15:01:01 (19:01Z) 184359 Monitor IPC:3122 (U8) = 4 184359 SimRead: 3122="MARKER SOUND" INT32: 1 (0x00000001) 184359 Monitor IPC:3122 (U8) = 132 184375 SimRead: 3122="COM TRANSMIT:1" INT32: 1 (0x00000001) 187734 ***** Nearest Airports ***** 187734 Airport1=CSB3, Lat=45.590158, Lon=-73.237983, Alt=46.998036, Dist=0.204709 187734 Airport2=CSV9, Lat=45.502778, Lon=-73.252222, Alt=25.000002, Dist=5.149605 187734 Airport3=CSP5, Lat=45.500833, Lon=-73.241667, Alt=50.000004, Dist=5.221143 187734 Airport4=CSX5, Lat=45.471944, Lon=-73.199444, Alt=110.000003, Dist=7.101321 187734 Airport5=CRG3, Lat=45.477778, Lon=-73.301389, Alt=45.000003, Dist=7.168713 187734 Airport6=CJF2, Lat=45.473889, Lon=-73.295000, Alt=90.000007, Dist=7.286133 214172 Run: "C:\FSUIPC7\\Utils\FSUIPCWebSocketServer.exe" 216297 READ0[18676] 3304, 4 bytes: 00 00 19 73 ...s 216297 READ0[18676] 3308, 4 bytes: 0D 00 DE FA .... 216297 READ0[18676] 3124, 1 bytes: 6E n 216406 READ0[18676] 290C, 4 bytes: 38 00 00 00 8... 216406 READ0[18676] 320C, 4 bytes: 38 00 00 00 8... 227844 -------------------- Starting everything now ---------------------- 227969 *** EVENT: Cntrl= 66058 (0x0001020a), Param= 1 (0x00000001) PANEL_LIGHTS_SET 228359 Lvars received: 85 L:vars & 0 H:vars now available 228359 Lvars/Hvars received - checking aircraft autos.... 336094 [INFO]: We have 085 lvars: 336094 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 336094 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 336094 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 336094 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 336094 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 336094 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 336094 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 336094 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 336094 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 336094 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 336094 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 336094 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 336094 [INFO]: ID=012 Aera_Brightness = 0.000000 336094 [INFO]: ID=013 isDataFieldActive = 0.000000 336094 [INFO]: ID=014 isCompassDisplayed = 0.000000 336094 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 336094 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 336094 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 336094 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 336094 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 336094 [INFO]: ID=020 AS3000_Brightness = 0.000000 336094 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 336094 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 336094 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 336094 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 336094 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 336094 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 336094 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 336094 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 336094 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 336094 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 336094 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 336094 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 336094 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 336094 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 336094 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 336094 [INFO]: ID=036 switchAuxSys = 0.000000 336094 [INFO]: ID=037 switchAttGyro = 0.000000 336094 [INFO]: ID=038 switchturnCoord = 0.000000 336094 [INFO]: ID=039 switchLtsCabinPass = 0.000000 336094 [INFO]: ID=040 switchGenerator = 0.000000 336094 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 336094 [INFO]: ID=042 comAdjInit = 0.000000 336094 [INFO]: ID=043 XmsnPressCorr = 0.000000 336094 [INFO]: ID=044 XmsnPressInit = 0.000000 336094 [INFO]: ID=045 XmsnTempCorr = 0.000000 336094 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 336094 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 336094 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 336094 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 336094 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 336094 [INFO]: ID=051 XMLVAR_YokeHidden1 = 0.000000 336094 [INFO]: ID=052 XMLVAR_YokeHidden2 = 0.000000 336094 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 336094 [INFO]: ID=054 ParkingBrake_Position = 100.000000 336094 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 336094 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 336094 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 336094 [INFO]: ID=058 XMLVAR_ADF_Mode = 2.000000 336094 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 336109 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 336109 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 336109 [INFO]: ID=062 INSTRUMENT_ADF = 0.000000 336109 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 336109 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 336109 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 336109 [INFO]: ID=066 LIGHTING_STROBE_1 = 1.000000 336109 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 336109 [INFO]: ID=068 LIGHTING_TAXI_1 = 0.000000 336109 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 336109 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 336109 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 0.000000 336109 [INFO]: ID=072 LIGHTING_CABIN_1 = 0.000000 336109 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 336109 [INFO]: ID=074 HourMeter_State = 2.000000 336109 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 336109 [INFO]: ID=076 KX155A_1_State = 2.000000 336109 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 336109 [INFO]: ID=078 KX155A_2_State = 2.000000 336109 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 336109 [INFO]: ID=080 C300ADF_State = 2.000000 336109 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 336109 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 336109 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 336109 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 1824094 READ0[19468] 3304, 4 bytes: 00 00 19 73 ...s 1824094 READ0[19468] 3308, 4 bytes: 0D 00 DE FA .... 1824094 WRITE0[19468] 8001, 13 bytes: 36 50 45 54 45 58 50 44 52 56 57 33 00 6PETEXPDRVW3. 1829109 READ0[19468] 337E, 2 bytes: FE 75 .u 1834109 READ0[19468] 337E, 2 bytes: 54 76 Tv 1839109 READ0[19468] 337E, 2 bytes: A8 76 .v 1844109 READ0[19468] 337E, 2 bytes: FA 76 .v 1849109 READ0[19468] 337E, 2 bytes: 4E 77 Nw 2068406 [INFO]: We have 085 lvars: 2068406 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 2068406 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 2068406 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 2068406 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 2068406 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 2068406 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 2068406 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 2068406 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 2068406 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 2068406 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 2068406 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 2068406 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 2068406 [INFO]: ID=012 Aera_Brightness = 0.000000 2068406 [INFO]: ID=013 isDataFieldActive = 0.000000 2068406 [INFO]: ID=014 isCompassDisplayed = 0.000000 2068406 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 2068406 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 2068406 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 2068406 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 2068406 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 2068406 [INFO]: ID=020 AS3000_Brightness = 0.000000 2068406 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 2068406 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 2068406 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 2068406 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 2068406 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 2068406 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 2068406 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 2068406 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 2068406 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 2068406 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 2068406 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 2068406 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 2068406 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 2068406 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 2068406 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 2068406 [INFO]: ID=036 switchAuxSys = 0.000000 2068406 [INFO]: ID=037 switchAttGyro = 0.000000 2068406 [INFO]: ID=038 switchturnCoord = 0.000000 2068406 [INFO]: ID=039 switchLtsCabinPass = 0.000000 2068406 [INFO]: ID=040 switchGenerator = 0.000000 2068406 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 2068406 [INFO]: ID=042 comAdjInit = 0.000000 2068406 [INFO]: ID=043 XmsnPressCorr = 0.000000 2068406 [INFO]: ID=044 XmsnPressInit = 0.000000 2068406 [INFO]: ID=045 XmsnTempCorr = 0.000000 2068406 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 2068406 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 2068406 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 2068406 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 2068406 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 2068406 [INFO]: ID=051 XMLVAR_YokeHidden1 = 1.000000 2068406 [INFO]: ID=052 XMLVAR_YokeHidden2 = 1.000000 2068406 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 2068406 [INFO]: ID=054 ParkingBrake_Position = 100.000000 2068406 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 2068406 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 2068406 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 2068406 [INFO]: ID=058 XMLVAR_ADF_Mode = 2.000000 2068406 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 2068406 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 2068406 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 2068406 [INFO]: ID=062 INSTRUMENT_ADF = 0.000000 2068406 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 2068406 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 2068422 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 2068422 [INFO]: ID=066 LIGHTING_STROBE_1 = 1.000000 2068422 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 2068422 [INFO]: ID=068 LIGHTING_TAXI_1 = 0.000000 2068422 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 2068422 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 2068422 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 0.000000 2068422 [INFO]: ID=072 LIGHTING_CABIN_1 = 0.000000 2068422 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 2068422 [INFO]: ID=074 HourMeter_State = 2.000000 2068422 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 2068422 [INFO]: ID=076 KX155A_1_State = 2.000000 2068422 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 2068422 [INFO]: ID=078 KX155A_2_State = 2.000000 2068422 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 2068422 [INFO]: ID=080 C300ADF_State = 2.000000 2068422 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 2068422 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 2068422 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 2068422 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 2122844 [INFO]: We have 085 lvars: 2122844 [INFO]: ID=000 XMLVAR_VARIOMETER_VOLUME = 0.000000 2122844 [INFO]: ID=001 ASVigilus_Brightness = 0.000000 2122844 [INFO]: ID=002 ASVigilus_Temperature_Unit = 0.000000 2122844 [INFO]: ID=003 ASVigilus_Fuel_Unit = 0.000000 2122844 [INFO]: ID=004 ASVigilus_Pressure_Unit = 0.000000 2122844 [INFO]: ID=005 XMLVAR_AS04F_UFCD_1_Brightness = 0.000000 2122844 [INFO]: ID=006 XMLVAR_AS04F_EFD_1_Brightness = 0.000000 2122844 [INFO]: ID=007 XMLVAR_AS04F_HUD_Black_Level = 0.000000 2122844 [INFO]: ID=008 XMLVAR_AS04F_HUD_AOA_Indexer = 0.000000 2122844 [INFO]: ID=009 XMLVAR_AS04F_HUD_Balance = 0.000000 2122844 [INFO]: ID=010 FA18_DDI_HSI_BING_MAP_SHOWN = 0.000000 2122844 [INFO]: ID=011 AS04F_HELMET_MOUNTED_DISPLAY_BRIGHTNESS = 0.000000 2122844 [INFO]: ID=012 Aera_Brightness = 0.000000 2122844 [INFO]: ID=013 isDataFieldActive = 0.000000 2122844 [INFO]: ID=014 isCompassDisplayed = 0.000000 2122844 [INFO]: ID=015 Map_BugIndicator_Mode = 0.000000 2122844 [INFO]: ID=016 Aera_IsLocalVarDefined = 0.000000 2122844 [INFO]: ID=017 AS3X_Touch_Brightness = 0.000000 2122844 [INFO]: ID=018 AS3X_Touch_Brightness_IsAuto = 0.000000 2122844 [INFO]: ID=019 AS3X_Touch_IsLocalVarDefined = 0.000000 2122844 [INFO]: ID=020 AS3000_Brightness = 0.000000 2122844 [INFO]: ID=021 AS3000_IsLocalVarDefined = 0.000000 2122844 [INFO]: ID=022 AS3000_PFD_ScreenLuminosity = 0.000000 2122844 [INFO]: ID=023 AS3000_MFD_ScreenLuminosity = 0.000000 2122844 [INFO]: ID=024 ASVigilus_Brightness_Manual = 0.000000 2122844 [INFO]: ID=025 DHC2_TAB_RADIOS = 0.000000 2122844 [INFO]: ID=026 DHC2_TAB_CARGO = 0.000000 2122844 [INFO]: ID=027 DHC2_TAB_PITOTCOVER = 0.000000 2122844 [INFO]: ID=028 DHC2_TAB_COLDCOVER = 0.000000 2122844 [INFO]: ID=029 DHC2_TAB_HIDE_COPILOT = 0.000000 2122844 [INFO]: ID=030 DHC2_TAB_CANOE = 0.000000 2122844 [INFO]: ID=031 DHC2_TAB_NAV = 0.000000 2122844 [INFO]: ID=032 DHC2_PropSpinner = 0.000000 2122844 [INFO]: ID=033 DHC2_TAB_SHAKE_OFF = 0.000000 2122844 [INFO]: ID=034 DHC2_TAB_CHOCKS = 0.000000 2122844 [INFO]: ID=035 DHC2_TAB_TIEDOWNS = 0.000000 2122844 [INFO]: ID=036 switchAuxSys = 0.000000 2122844 [INFO]: ID=037 switchAttGyro = 0.000000 2122844 [INFO]: ID=038 switchturnCoord = 0.000000 2122844 [INFO]: ID=039 switchLtsCabinPass = 0.000000 2122844 [INFO]: ID=040 switchGenerator = 0.000000 2122844 [INFO]: ID=041 switchPrimaryCompassAdjust = 0.000000 2122844 [INFO]: ID=042 comAdjInit = 0.000000 2122844 [INFO]: ID=043 XmsnPressCorr = 0.000000 2122844 [INFO]: ID=044 XmsnPressInit = 0.000000 2122844 [INFO]: ID=045 XmsnTempCorr = 0.000000 2122844 [INFO]: ID=046 LOCAL_milliBar_to_inHg = 0.000000 2122844 [INFO]: ID=047 XMLVAR_Magneto_Starter_IsHeld = 0.000000 2122844 [INFO]: ID=048 XMLVAR_LeverThrottleHidden1 = 0.000000 2122844 [INFO]: ID=049 XMLVAR_LeverMixtureHidden1 = 0.000000 2122844 [INFO]: ID=050 ENG FUEL VALVE:1 = 1.000000 2122844 [INFO]: ID=051 XMLVAR_YokeHidden1 = 0.000000 2122844 [INFO]: ID=052 XMLVAR_YokeHidden2 = 1.000000 2122844 [INFO]: ID=053 HANDLING_ElevatorTrim = 840.205128 2122844 [INFO]: ID=054 ParkingBrake_Position = 100.000000 2122844 [INFO]: ID=055 XMLVAR_Hours_Delta = 0.000000 2122844 [INFO]: ID=056 XMLVAR_Minutes_Delta = 0.000000 2122844 [INFO]: ID=057 XMLVAR_LTS_Test = 0.000000 2122844 [INFO]: ID=058 XMLVAR_ADF_Mode = 2.000000 2122844 [INFO]: ID=059 DEICE_Pitot_1 = 0.000000 2122844 [INFO]: ID=060 XMLVAR_IE_Throttle_VR_Handled = 0.000000 2122844 [INFO]: ID=061 XMLVAR_IE_Throttle_VR_Value = 0.000000 2122844 [INFO]: ID=062 INSTRUMENT_ADF = 0.000000 2122844 [INFO]: ID=063 INSTRUMENT_Altimeter_1 = 1013.250011 2122844 [INFO]: ID=064 INSTRUMENT_Course_1 = 0.000000 2122844 [INFO]: ID=065 INSTRUMENT_Course_2 = 0.000000 2122844 [INFO]: ID=066 LIGHTING_STROBE_1 = 1.000000 2122844 [INFO]: ID=067 LIGHTING_NAV_1 = 1.000000 2122844 [INFO]: ID=068 LIGHTING_TAXI_1 = 0.000000 2122844 [INFO]: ID=069 LIGHTING_LANDING_1 = 1.000000 2122844 [INFO]: ID=070 LIGHTING_BEACON_1 = 1.000000 2122844 [INFO]: ID=071 LIGHTING_GLARESHIELD_1 = 0.000000 2122844 [INFO]: ID=072 LIGHTING_CABIN_1 = 0.000000 2122844 [INFO]: ID=073 HourMeter_ScreenLuminosity = 1.000000 2122844 [INFO]: ID=074 HourMeter_State = 2.000000 2122844 [INFO]: ID=075 KX155A_1_ScreenLuminosity = 1.000000 2122844 [INFO]: ID=076 KX155A_1_State = 2.000000 2122844 [INFO]: ID=077 KX155A_2_ScreenLuminosity = 1.000000 2122844 [INFO]: ID=078 KX155A_2_State = 2.000000 2122844 [INFO]: ID=079 C300ADF_ScreenLuminosity = 1.000000 2122859 [INFO]: ID=080 C300ADF_State = 2.000000 2122859 [INFO]: ID=081 XMLVAR_IsDeiceAirFrame = 0.000000 2122859 [INFO]: ID=082 XMLVAR_IsDeiceAirFrame2 = 0.000000 2122859 [INFO]: ID=083 HUD_AP_SELECTED_SPEED = 0.000000 2122859 [INFO]: ID=084 HUD_AP_SELECTED_ALTITUDE = 0.000000 3642266 READ0[9744] 3304, 4 bytes: 00 00 19 73 ...s 3642266 READ0[9744] 3308, 4 bytes: 0D 00 DE FA .... 3642266 WRITE0[9744] 330A, 2 bytes: EC 03 .. 3705563 READ0[2392] 3304, 4 bytes: 00 00 19 73 ...s 3705563 READ0[2392] 3308, 4 bytes: 0D 00 DE FA .... 4371953 Console: Program being closed! NOTE: I wasn't running FSUIPC7 at the time I was testing WASMClient, I had used it earlier today. I included it in case you wanted to see other information.
  18. After having spent all afternoon researching communication, trying to learn how to call a VB.NET DLL from a C++ executable, and finally narrowing it down to IPC, it's nice to finally appreciate all the stuff that was in my FSUIPC download. Especially that C++ section on interprocess communication, looking forward to reading that tomorrow. 🙂 Paul, I hope you don't mind me posting the progress on using your DLL from a C++ application. I'm hoping that this information might help the next guy home in on the required information. I'm mostly randomly bouncing all over the web trying to ask the right questions, using whatever I've learned over the decades of dabbling in VB6 since windows XP. This is where I'm trying to get. Robert 🙂
  19. I'm an idiot, I totally missed that Example Code smack dab in the center of your download page. But I did find this gen when I googled "MSFSVariableServices download" just now. http://fsuipc.paulhenty.com/Reference/html/classFSUIPC_1_1MSFSVariableServices.html And then there's this beauty that I just found. http://fsuipcwebsockets.paulhenty.com/#overview Now to figure a way to use all this from a C++ executable. Slowly getting closer... Robert
  20. Ok. Now that I think about this a bit more, it's probably better if I keep processing separate. Your module works perfectly at what it's designed to do. I'm going to have a "dispatch" module that will process requests from my USB device, and have dispatch issue calls to your VB.NET module, or a C++ module for SimConnect requests (that logic is already tested out). Modular is always better, easier to isolate muck-ups. I just need to figure out how the calls work. Robert 🙂
  21. Ok, that's excellent news. Can your module also process Simconnect Events? I'm looking through your Example Code project and I see mostly references to Offsets. (I'm a mainframe guy by trade, so things don't stand out to me unless there's a flashing neon sign) Robert
  22. I've seen isolated comments about XMLVARs and FSUIPC, but in conjunction with "calculator code". https://forums.flightsimulator.com/t/how-to-write-to-xmlvar-defined-localvariable/363112 The only other place I've seen Calculator Code is in links about FSUIPC's WASM module. That's my current direction of research unless something better comes along. Robert
  23. (reading your link as soon as I post this) These guys are the last on my list. I don't know if they are considered as local, and haven't seen examples of how to read/write to them YET: XMLVAR_YokeHidden1 XMLVAR_YokeHidden2 XMLVAR_ADF_Mode That ADF Mode selector is the last control on the Cessna 152 that I can't afffect; it's not a Simconnect event or simvar (by MSFS SDK standards - although I might have missed a paragraph - there's a LOT of information spread all over that documentation). I started looking at WASM modules today to see if they can get to them. Robert
  24. It may not seem as much, but to me it's the world. 🙂 I can get to the SimConnect Events using C++, and now to the SimVars using this DLL. Now if only I could figure out how to get to those pesky XMLVARs from C++ or VB... 😄
  25. WOOT WOOO!!! Created using your template and build. I'm so happy I hadn't wasted your time on a stupid mistake on my part. 🙂 Thing is, I remember reading about that 32bit stuff interfering with 64bit compilation while researching how to do this (somewhere, can't remember where). Thanks so much!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.