C.Schaffhausen Posted February 9, 2023 Report Posted February 9, 2023 Hello all, Is it possible to program a switch so when it is on, the throttle outout is limited to a certain percentage (let's say 90%) even though the physical throttle is maxed out? Thank you all! Best regards, C.Schaffhausen
John Dowson Posted February 9, 2023 Report Posted February 9, 2023 The best way to do this would be to handle the throttle assignment in a lua script. You would assign your throttle axis to a free FSUIPC offset, and the lua script (which should auto-run) would monitor this offset (using event,offset), perform any calibration needed and then send the appropriate throttle axis control to the sim (using ipc.control). The script could also monitor for the button/switch (using event.button) and set/clear a flag when the switch is pressed/released, and this flag can be used in the function that calibrates the throttle offset value, so that it can be calibrated differently depending upon whether the flag is set or cleared. John
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now