forked from betaflight/betaflight-tx-lua-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages.lua
67 lines (50 loc) · 1.88 KB
/
pages.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
local PageFiles = {}
if apiVersion >= 1.36 and features.vtx then
PageFiles[#PageFiles + 1] = { title = "VTX Settings", script = "vtx.lua", init = "PAGES/INIT/vtx.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Profiles", script = "profiles.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "PIDs 1", script = "pids1.lua" }
end
if apiVersion >= 1.21 then
PageFiles[#PageFiles + 1] = { title = "PIDs 2", script = "pids2.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Rates", script = "rates.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Advanced PIDs", script = "pid_advanced.lua" }
end
if apiVersion >= 1.44 then
PageFiles[#PageFiles + 1] = { title = "Simplified Tuning", script = "simplified_tuning.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Filters 1", script = "filters1.lua" }
end
if apiVersion >= 1.42 then
PageFiles[#PageFiles + 1] = { title = "Filters 2", script = "filters2.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "System / Motor", script = "pwm.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Receiver", script = "rx.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Failsafe", script = "failsafe.lua" }
end
if apiVersion >= 1.41 and features.gps then
PageFiles[#PageFiles + 1] = { title = "GPS Rescue", script = "rescue.lua" }
end
if apiVersion >= 1.41 and features.gps then
PageFiles[#PageFiles + 1] = { title = "GPS PIDs", script = "gpspids.lua" }
end
if apiVersion >= 1.16 then
PageFiles[#PageFiles + 1] = { title = "Trim Accelerometer", script = "acc_trim.lua" }
end
if apiVersion >= 1.45 then
PageFiles[#PageFiles + 1] = { title = "OSD Elements", script = "pos_osd.lua" }
end
return PageFiles