Welcome to the forum for MobiFlight! Feel free to reach out to the community in case you have questions, issues or just want to share great ideas or details about your latest home cockpit project.
You like MobiFlight? Donate via PayPal and support the MobiFlight development. Thanks!
The community support for MobiFlight has moved exclusively over to our Discord server. Register for free and enjoy more interactive functions like image and video upload, voice chat. More than 7,000 registered users around the world make it a great experience!
See you on our MobiFlight Community Discord server.
A HUGE Thank You to everyone who participated in the forum, especially obviously to Pizman and Stephan who did an outstanding job over so many years providing an incredible service to the MobiFlight community.
The forum is still providing a lot of good content, hence we keep this information accessible.
0B18 8 Byte Gyro suction in inches of mercury (Hg), floating point double
(FLOAT64)
0C3E 2 Gyro drift amount ( *360/65536 for degrees).
Note that whilst it may appear that the value is accurate to
fractions of a degree, the actual setting capability (via an event)
is based on whole degrees, just like the INC/DEC controls. Any
value written here will normally be read back slightly
differently, based upon this granularity.
2B00 8 Gyro compass heading (magnetic), including any drift.
64-bit floating point.
COMP = ipc.readDBL(0x2B00)
GYOBEAR = ipc.readUW(0x07CC)
GYROHEAD = (360 - COMP) + ((GYOBEAR * 360) / 65536)