ALT select
-
I am using MobiFlight to map my controllers. The Just Flight code for the altitude select wheel / knob is:
(>L :MCP_Alt_sel_knob) -- (>L :MCP_Alt_sel_knob)
This changes the selected altitude 100 feet at a time (as does the select wheel). is there any way to amend that code to use with the On the Right / Left FAST tabs in Mobifight so that fast turning of the mapped encoder will change 1000 feet at a time, thus facilitating big altitude changes ?
-
I am not using MobiFlight so just a hint that it will not be easy:
MCP_Alt_sel_knob does not really care if you decrease it by 1 or by 10, it just registers the change. And is sensitive to the speed of sending changes.
If you send changes slower than about every 10ms you get altitude change of 100ft per tick.
If you send changes within some narrow middle speed band you get altitude change of more than 100ft per tick - I was able to consistently get 300ft per tick by sending change every 1ms and there is some range where you get 1000ft per tick.
If you send changes even faster they get missed and altitude does not change.