Jump to content
The simFlight Network Forums

Manifold Pressure and Prop RPM with GFDisplay?


Recommended Posts

Is there a way to use GFDisplay to display manifold pressure and propeller RPM?

Have you looked these up in the FSUIPC programmer's document? Both are listed. Use a search on the text.

Engine 1's MP is a 16-bit word at offset 08C0 in inches * 1024, so you can display that simply by something like (for example):

D0=X8C0 U16 D22 /1024 ;MP in inches as nn.nn

The prop 1 RPM is best taken from the 64-bit floating point value at offset 2400, so, for example:

D1=X2400 F64 D40 ;RPM as nnnn or -nnnn (neg for contra-rotation)

Change the formatting to suit your needs. These are only examples.

Regards,

Pete

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • 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.