-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdefault_settings.json
More file actions
218 lines (218 loc) · 4.86 KB
/
default_settings.json
File metadata and controls
218 lines (218 loc) · 4.86 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"General": {
"maptilerAPIKey": {
"default": "",
"type": "string",
"display": "Maptiler API Key",
"hidden": true
},
"mapStyle": {
"default": "hybrid",
"type": "option",
"options": [
"satellite",
"hybrid",
"streets",
"outdoor"
],
"display": "Map Style"
},
"autoCheckForUpdates": {
"default": true,
"type": "boolean",
"display": "Automatically Check for Updates"
},
"syncMapViews": {
"default": false,
"type": "boolean",
"display": "Sync Dashboard and Missions Map Viewstate"
},
"speechAnnouncements": {
"default": false,
"type": "boolean",
"display": "Speech Announcements"
},
"experimentalDeveloperFeatures": {
"default": false,
"type": "boolean",
"display": "Experimental Developer Features",
"description": "These may be unstable and can cause unexpected bugs or crashes."
}
},
"Dashboard": {
"maxAltitudeAlert": {
"description": "You'll be notified when the relative altitude of a drone exceeds this value.",
"default": 120,
"type": "number",
"range": [
0,
100000
],
"display": "Maximum Altitude Alert",
"suffix": "m",
"group": "Altitude"
},
"minAltitudeAlerts": {
"description": "You'll be notified when the relative altitude of a drone goes below these values.",
"default": [],
"type": "extendableNumber",
"range": [
0,
100000
],
"display": "Minimum Altitude Alerts",
"suffix": "m",
"group": "Altitude"
},
"batteryAlert": {
"description": "You'll be notified when the battery percentage falls below these values.",
"default": [
10,
20,
50
],
"type": "extendableNumber",
"range": [
0,
100
],
"display": "Battery Alert",
"suffix": "%",
"group": "Battery"
},
"heartbeatTimeoutSeconds": {
"description": "You'll be notified when heartbeats stop arriving from the aircraft for this long.",
"default": 10,
"type": "number",
"range": [
1,
3600
],
"display": "Heartbeat Timeout",
"suffix": "s",
"group": "Connection"
}
},
"Video": {
"ffmpegBinaryPath": {
"default": "",
"type": "string",
"display": "FFmpeg Binary Path",
"description": "Path to FFmpeg binary for RTSP stream conversion"
},
"ffmpegDownloadStatus": {
"default": "not_downloaded",
"type": "string",
"display": "FFmpeg Download Status",
"description": "Status of FFmpeg binary download"
},
"rtspStreams": {
"default": [],
"type": "extendableText",
"display": "RTSP Streams",
"description": "List of configured RTSP video streams",
"fields": [
{
"key": "name",
"label": "Stream Name",
"validation": true
},
{
"key": "url",
"label": "RTSP URL",
"validation": "rtsp"
}
]
}
},
"Developer": {
"MAV_DATA_STREAM_RAW_SENSORS": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "RAW_SENSORS",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_EXTENDED_STATUS": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "EXTENDED_STATUS",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_RC_CHANNELS": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "RC_CHANNELS",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_RAW_CONTROLLER": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "RAW_CONTROLLER",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_POSITION": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "POSITION",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_EXTRA1": {
"default": 4,
"type": "number",
"range": [
0,
15
],
"display": "EXTRA1",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_EXTRA2": {
"default": 3,
"type": "number",
"range": [
0,
15
],
"display": "EXTRA2",
"suffix": "Hz",
"group": "Data stream rates"
},
"MAV_DATA_STREAM_EXTRA3": {
"default": 1,
"type": "number",
"range": [
0,
15
],
"display": "EXTRA3",
"suffix": "Hz",
"group": "Data stream rates"
}
}
}