Replies: 1 comment
-
All Custom Events work OK now, thanks to A.G here. Changed my code and use K: instead of H: command = “(>K:A32NX.FCU_AP_1_PUSH)”; Thanks |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my WASM, I can send H Events e.g.
command = “(>H:A32NX_RMP_L_VHF2_BUTTON_PRESSED)”;
execute_calculator_code(command.c_str(), nullptr, nullptr, nullptr);
and it will trigger the VHF2 Button in the airplane as it should. Other H Events also work fine with the same logic.
But, when I try to use the same code logic for one of the new Autopilot Custom Events,
e.g. A32NX.FCU_AP_1_PUSH or A32NX.FCU_SPD_PUSH
command = “(>H:A32NX.FCU_AP_1_PUSH)”;
execute_calculator_code(command.c_str(), nullptr, nullptr, nullptr);
it will not trigger the FCU button
I must miss something? Are these A320NX flybywire Custom Events not H Events?
I am using Stable 0.7 version
Beta Was this translation helpful? Give feedback.
All reactions