jfrickmann/SoarOTX

support of Jumper T12

Closed this issue · 3 comments

vitas commented

Would be great to make adjustments to run the program on Jumper T12
it is basically QX7 with different navigation. I used the program, old version with great success.
Looks like it cannot leave the menu as there is no home button.

vitas commented

I changed the util script to react home as long right and it works as expected, maybe there is a better way to do that

-- Show or hide help text
function soarUtil.ToggleHelp(event)
if soarUtil.showHelp then
soarUtil.showHelp = (event ~= EVT_MENU_BREAK and event ~= EVT_SHIFT_BREAK and event ~= EVT_RIGHT_LONG)
else
soarUtil.showHelp = (event == EVT_MENU_BREAK or event == EVT_SHIFT_BREAK or event == EVT_RIGHT_LONG)
end
end -- ToggleHelp()

Heh, I didn't know that Jumpers were that similar. I have added support for T12, press LEFT+RIGHT down together to toggle help.

vitas commented

thank you, Jesper!