
vgmarimon
Members-
Posts
22 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Gallery
Downloads
Everything posted by vgmarimon
-
Altimeter setting with Airbus 320 FSLABS P3d/fsx
vgmarimon replied to vgmarimon's topic in FSUIPC Support Pete Dowson Modules
I only have problems with FSLABS, aerosoft, wilco, airsimmer uses this offsets perfectly... -
Altimeter setting with Airbus 320 FSLABS P3d/fsx
vgmarimon replied to vgmarimon's topic in FSUIPC Support Pete Dowson Modules
i'm only need to read value... not write.... -
Dim flapsincrement As Offset(Of Short) = New FSUIPC.Offset(Of Short)(&H3BFA) Dim flapsindex As Offset(Of Byte) = New FSUIPC.Offset(Of Byte)(&HBFC) ' FSX Dim flapsvalue As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&HBDC)
-
Private Function Get_Flaps_Position() If SIM = "FSX" Or SIM = "P3D" Then Return (flapsindex.Value) Else Return (Int(flapsvalue.Value) / Int(flapsincrement.Value)) End If End Function
-
Hi all, hi Pete, how is the best way to detect when plane is over a runway? Thx
-
FSUIPC Requesting Data Best Practice
vgmarimon replied to CXA001's topic in FSUIPC Client DLL for .NET
Hi, our software for tracking flights in Vueling VA made by me, i process data every 500ms... ALL VARIABLES(40 o 50) without loosing performance.... -
Incorporate FSUIPC.DLL in the executable file
vgmarimon replied to Marco Milesi's topic in FSUIPC Client DLL for .NET
I use this in a .bat file: "C:\Program Files\Microsoft\ILMerge\ilmerge.exe" infile.exe FSUIPCClient.dll MySql.Data.dll /out:fileout.exe /target:winexe /targetplatform:v4 /log:mergelog.log /ndebug This embed both FSUIPC and MYSQL DLL files into one .EXE file. -
Hi Pete, how realiable is offset 11B8 and 11BA for Gforce reads? Better read offset 1140 instead? Many Thx
-
Hi, what is the offset for flaps position angle? Not position, angle... ex: 1,2,5,10.....
-
Hi Pete this offset 0x0832 1 Crash detection: 1=Crash detection is on, 0 = off works only in fsx or all? Thx
-
Hi, Pete.... What can i expect if write 0 to offset 0372? Faliures? Many thx
-
Dim msgcontrol As Offset(Of Short) = New FSUIPC.Offset(Of Short)("msg", &H32FA) Dim msg As Offset(Of String) = New FSUIPC.Offset(Of String)("msg", &H3380, 128) msg.Value = "Hello this is captain speaking" msgcontrol.Value = 5 Try FSUIPCConnection.Process("msg") Catch e As FSUIPCException End Try
-
Hi, which offset must write to switch off an engine? In general purpose all aircrafts. Thx
-
Then easy to translate to c#....
-
Where's the difficulty to understand?
-
i use this system to get real metar. Is made to get two metars as same time, icao in "origen" and "destino" Dim url1, url2 As String Dim posori1, posori2 As UInteger Dim posdes1, posdes2 As UInteger url1 = "http://www.aviationweather.gov/adds/metars/?station_ids=" url2 = "&std_trans=standard&chk_metars=on&hoursStr=most+recent+only&submitmet=Submit" Dim metarorigen, metardestino As String metarorigen = New System.Net.WebClient().DownloadString(url1 + LCase(origen) + url2) metardestino = New System.Net.WebClient().DownloadString(url1 + LCase(destino) + url2) posori1 = metarorigen.IndexOf(">" + UCase(origen)) + 1 Try posori2 = metarorigen.IndexOf("</FONT>") - 1 Catch ex As Exception posori2 = 0 End Try If posori2 > 0 Then txtMetarDep.Text = metarorigen.Substring(posori1, posori2 - posori1 + 1) posdes1 = metardestino.IndexOf(">" + UCase(destino)) + 1 Try posdes2 = metardestino.IndexOf("</FONT>") - 1 Catch ex As Exception posdes2 = 0 End Try If posdes2 > 0 Then txtMetarArr.Text = metardestino.Substring(posdes1, posdes2 - posdes1 + 1)
-
FSX is having a problem with FSUIPC.DLL
vgmarimon replied to Portanav's topic in FSUIPC Support Pete Dowson Modules
Check trustedinstall in fsx.cfg, delete line about fsuipc -
Many Thx, command line better, runs fine.
-
Hi, it's possible to embed .DLL file into .EXE in VS2013? Many Thx.