mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 11:29:51 +03:00
14 lines
814 B
Lua
14 lines
814 B
Lua
local function run(event)
|
|
inputt= {name = "In1", source = 1, weight = 50, offset = 10, switch = 3}
|
|
mixt= {name = "Mix1", source = 1, weight = 50, offset = 10, curveType = 1, curveValue = 50, flightModes = 3, delayUp = 5, speedDown = 5, speedUp = 2, delayDown = 5, mixWarn = 1 , carryTrim = true , multiplex = 1, switch = 3}
|
|
outputt = {name = "Out1", min = -800, max = 800, offset = 10, ppmCenter = 10, symetrical = 1, revert = 1, switch = 3}
|
|
timert = {mode = 4, start = 0, countdownBeep = 2, persistent = 1, minuteBeep = true, value = 10 }
|
|
lst = {func = 2, v1 = 2, v2 = 2, v3 = 2, duration = 3, delay = 2, ["and"] = 2}
|
|
model.insertInput(4,0,inputt)
|
|
model.insertMix(4,0,mixt)
|
|
model.setOutput(4, outputt)
|
|
model.setLogicalSwitch(0, lst)
|
|
model.setTimer(0, timert)
|
|
return 2
|
|
end
|
|
return {run=run}
|