Jump to content
The simFlight Network Forums

Hikmat

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Hikmat

  1. Dear epareja Please find attached files in your mail if any problem let me know best regards Hikmat
  2. Dear Ernesto Pareja, could you please paste your project here, or send me (h-avia@mail.ru), I ll try to fix it best regards
  3. hi, Loot at FSUIPC SDK for C# I thinks this can help you. You can modify this source for writing some value to the offset. here is link https://www.dropbox.com/s/qz71kqczyo1rtgn/UIPC_SDK_CSHARP%20Revision%201.13.zip?dl=0 I did for delph and works fine best regards Hikmat
  4. Hi Pete, I am trying to read HDG but got some fantastic number like 121823238 however I can read speed and altitude normally. Could you please help me to solve this issue ? my delphi code is : procedure TFormMain.TimerUpdateTimeTimer(Sender: TObject); var dwResult : DWORD; auiTime : Array[1..3] of Byte; altitude:DWord; IAS: DWord; G_force: DWord; St: DWord; HDG: DWord; begin FSUIPC_Read($3324, 8, @altitude, dwResult); // FSUIPC_Read($02BC, 4, @IAS, dwResult); // FSUIPC_Read($11BA, 4, @G_force, dwResult); FSUIPC_Read($0580, 4, @HDG, dwResult); // FSUIPC_Process(dwResult); Label4.Caption := IntToStr(round(altitude )) + ' ft'; Label5.Caption := IntToStr(round(IAS / 128)) + ' kt'; Label6.Caption := IntToStr(round( G_force/625)); Label7.Caption := IntToStr(round(HDG*360/65536*65536)); Thanks in Advance Hikmat
×
×
  • 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.