How do I made the working autopilot panel? it should to turn on the autopilot, set it's bank, heading, v/s, altitude and speed/throttle (or both). Which codes I'm should to use on buttons to do this thing? (Sorry, I am very noob in Funky Threes)
How do I made the working autopilot panel? it should to turn on the autopilot, set it's bank, heading, v/s, altitude and speed/throttle (or both). Which codes I'm should to use on buttons to do this thing? (Sorry, I am very noob in Funky Threes)
@KolyAsDona you need to add the things in variables, then use the increment/decrement variable names in the buttons
@hpgbproductions We'll thanks, this will be enough for my creation for first time XD. It's should to be placed into "variables" or button input?
For buttons, you can set interactionType = Once such that it sends a 1 signal for 1 tick when clicked. Then you can check these inputs in another variable that actually stores the value.
I didn't check, it may be slightly wrong:
.
SETTER ApAltInc:
(Nothing)
Note: leaving the value empty will register the variable name with default value, but its value will never be changed in the tick update, so it is only written to by the button
.
SETTER ApAltDec:
(Nothing)
Note: same as above
.
SETTER ApAlt:
ApAlt + 100*ApAltInc - 100*ApAltDec
.
Also I made a rotary encoder before xdd (it uses either a control base or the GA throttle)