cfclient 2017.4__py3-none-any.whl → 2025.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cfclient/__init__.py +16 -11
- cfclient/configs/config.json +4 -3
- cfclient/configs/input/Generic_OS_X.json +1 -0
- cfclient/configs/input/Joystick.json +1 -0
- cfclient/configs/input/PS3_Mode_1.json +1 -0
- cfclient/configs/input/PS3_Mode_2.json +1 -0
- cfclient/configs/input/PS3_Mode_3.json +1 -0
- cfclient/configs/input/PS4_Mode_1.json +1 -0
- cfclient/configs/input/PS4_Mode_2.json +1 -0
- cfclient/configs/input/PS4_shoulder_btns_yaw.json +1 -0
- cfclient/configs/input/xbox360_mode1.json +1 -0
- cfclient/configs/log/PID_tuning/Attitude.json +46 -0
- cfclient/configs/log/PID_tuning/Attitude_rate.json +46 -0
- cfclient/configs/log/PID_tuning/Position.json +46 -0
- cfclient/configs/log/PID_tuning/Velocity.json +46 -0
- cfclient/configs/log/PID_tuning_components/Pitch.json +22 -0
- cfclient/configs/log/PID_tuning_components/Pitch_rate.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_x.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_y.json +22 -0
- cfclient/configs/log/PID_tuning_components/Position_z.json +22 -0
- cfclient/configs/log/PID_tuning_components/Roll.json +22 -0
- cfclient/configs/log/PID_tuning_components/Roll_rate.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_x.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_y.json +22 -0
- cfclient/configs/log/PID_tuning_components/Velocity_z.json +22 -0
- cfclient/configs/log/PID_tuning_components/Yaw.json +22 -0
- cfclient/configs/log/PID_tuning_components/Yaw_rate.json +22 -0
- cfclient/gui.py +44 -9
- cfclient/headless.py +3 -12
- cfclient/resources/log_param_doc.json +1 -0
- cfclient/ui/connectivity_manager.py +198 -0
- cfclient/ui/dialogs/about.py +53 -36
- cfclient/ui/dialogs/about.ui +23 -3
- cfclient/ui/dialogs/anchor_position_dialog.py +252 -0
- cfclient/ui/dialogs/anchor_position_dialog.ui +138 -0
- cfclient/ui/dialogs/basestation_mode_dialog.py +185 -0
- cfclient/ui/dialogs/basestation_mode_dialog.ui +186 -0
- cfclient/ui/dialogs/bootloader.py +448 -85
- cfclient/ui/dialogs/bootloader.ui +387 -134
- cfclient/ui/dialogs/cf2config.py +4 -4
- cfclient/ui/dialogs/cf2config.ui +3 -4
- cfclient/ui/dialogs/inputconfigdialogue.py +24 -19
- cfclient/ui/dialogs/inputconfigdialogue.ui +53 -30
- cfclient/ui/dialogs/lighthouse_bs_geometry_dialog.py +220 -0
- cfclient/ui/dialogs/lighthouse_bs_geometry_dialog.ui +110 -0
- cfclient/ui/dialogs/lighthouse_system_type_dialog.py +93 -0
- cfclient/ui/dialogs/lighthouse_system_type_dialog.ui +121 -0
- cfclient/ui/dialogs/logconfigdialogue.py +401 -101
- cfclient/ui/dialogs/logconfigdialogue.ui +117 -72
- cfclient/ui/icons/bl.webp +0 -0
- cfclient/ui/icons/bolt.webp +0 -0
- cfclient/ui/icons/cf21.webp +0 -0
- cfclient/ui/icons/checkmark_black.png +0 -0
- cfclient/ui/icons/checkmark_white.png +0 -0
- cfclient/ui/icons/create.png +0 -0
- cfclient/ui/icons/delete.png +0 -0
- cfclient/ui/icons/flapper.webp +0 -0
- cfclient/ui/icons/tag.webp +0 -0
- cfclient/ui/main.py +328 -258
- cfclient/ui/main.ui +184 -80
- cfclient/ui/pluginhelper.py +7 -1
- cfclient/ui/pose_logger.py +116 -0
- cfclient/ui/tab_toolbox.py +208 -0
- cfclient/ui/tabs/ColorLEDTab.py +752 -0
- cfclient/ui/tabs/ConsoleTab.py +48 -13
- cfclient/ui/{toolboxes → tabs}/CrtpSharkToolbox.py +19 -34
- cfclient/ui/tabs/ExampleTab.py +9 -16
- cfclient/ui/tabs/FlightTab.py +437 -325
- cfclient/ui/tabs/GpsTab.py +14 -20
- cfclient/ui/tabs/LEDRingTab.py +277 -0
- cfclient/ui/tabs/LogBlockDebugTab.py +20 -27
- cfclient/ui/tabs/LogBlockTab.py +35 -35
- cfclient/ui/tabs/LogClientTab.py +85 -0
- cfclient/ui/tabs/LogTab.py +50 -27
- cfclient/ui/tabs/ParamTab.py +443 -57
- cfclient/ui/tabs/PlotTab.py +23 -25
- cfclient/ui/tabs/TuningTab.py +292 -0
- cfclient/ui/tabs/__init__.py +12 -2
- cfclient/ui/tabs/colorLEDTab.ui +624 -0
- cfclient/ui/tabs/consoleTab.ui +46 -0
- cfclient/ui/tabs/flightActionContainer.ui +103 -0
- cfclient/ui/tabs/flightTab.ui +724 -237
- cfclient/ui/tabs/{ledTab.ui → ledRingTab.ui} +63 -46
- cfclient/ui/tabs/lighthouse_tab.py +714 -0
- cfclient/ui/tabs/lighthouse_tab.ui +430 -0
- cfclient/ui/tabs/locopositioning_tab.py +606 -389
- cfclient/ui/tabs/locopositioning_tab.ui +370 -253
- cfclient/ui/tabs/logClientTab.ui +52 -0
- cfclient/ui/tabs/logTab.ui +1 -1
- cfclient/ui/tabs/paramTab.ui +204 -3
- cfclient/ui/tabs/tuningTab.ui +773 -0
- cfclient/ui/widgets/ai.py +37 -39
- cfclient/ui/widgets/hexspinbox.py +16 -10
- cfclient/ui/widgets/plotter.ui +39 -47
- cfclient/ui/widgets/plotwidget.py +57 -22
- cfclient/ui/widgets/super_slider.py +112 -0
- cfclient/ui/wizards/__init__.py +0 -0
- cfclient/ui/wizards/bslh_1.png +0 -0
- cfclient/ui/wizards/bslh_2.png +0 -0
- cfclient/ui/wizards/bslh_3.png +0 -0
- cfclient/ui/wizards/bslh_4.png +0 -0
- cfclient/ui/wizards/bslh_5.png +0 -0
- cfclient/ui/wizards/lighthouse_geo_bs_estimation_wizard.py +465 -0
- cfclient/utils/config_manager.py +5 -4
- cfclient/utils/input/__init__.py +77 -19
- cfclient/utils/input/inputinterfaces/wiimote.py +2 -2
- cfclient/utils/input/inputreaderinterface.py +17 -7
- cfclient/utils/input/inputreaders/__init__.py +17 -0
- cfclient/utils/logconfigreader.py +245 -25
- cfclient/utils/logdatawriter.py +3 -1
- cfclient/utils/periodictimer.py +1 -1
- cfclient/utils/ui.py +336 -0
- cfclient/utils/zmq_led_driver.py +5 -0
- cfclient/utils/zmq_param.py +6 -0
- cfclient/version.py +34 -1
- cfclient-2025.12.1.dist-info/METADATA +70 -0
- cfclient-2025.12.1.dist-info/RECORD +152 -0
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/WHEEL +1 -1
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/entry_points.txt +0 -1
- cfclient-2025.12.1.dist-info/licenses/LICENSE.txt +350 -0
- {cfclient-2017.4.dist-info → cfclient-2025.12.1.dist-info}/top_level.txt +1 -0
- cfconfig/Makefile +51 -0
- cfconfig/configblock.py +111 -0
- cfloader/__init__.py +41 -55
- cfzmq/__init__.py +22 -14
- cfclient/ui/dialogs/cf1config.py +0 -265
- cfclient/ui/dialogs/cf1config.ui +0 -260
- cfclient/ui/tab.py +0 -96
- cfclient/ui/tabs/LEDTab.py +0 -169
- cfclient/ui/toolboxes/ConsoleToolbox.py +0 -69
- cfclient/ui/toolboxes/DebugDriverToolbox.py +0 -107
- cfclient/ui/toolboxes/__init__.py +0 -45
- cfclient/ui/toolboxes/consoleToolbox.ui +0 -62
- cfclient/ui/toolboxes/debugDriverToolbox.ui +0 -86
- cfclient-2017.4.dist-info/DESCRIPTION.rst +0 -3
- cfclient-2017.4.dist-info/METADATA +0 -22
- cfclient-2017.4.dist-info/RECORD +0 -104
- cfclient-2017.4.dist-info/metadata.json +0 -1
- /cfclient/{icon-256.png → ui/icons/icon-256.png} +0 -0
- /cfclient/ui/{toolboxes → tabs}/crtpSharkToolbox.ui +0 -0
|
@@ -0,0 +1,773 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>Form</class>
|
|
4
|
+
<widget class="QWidget" name="Form">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>985</width>
|
|
10
|
+
<height>420</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="sizePolicy">
|
|
14
|
+
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
15
|
+
<horstretch>0</horstretch>
|
|
16
|
+
<verstretch>0</verstretch>
|
|
17
|
+
</sizepolicy>
|
|
18
|
+
</property>
|
|
19
|
+
<property name="windowTitle">
|
|
20
|
+
<string>Tuning</string>
|
|
21
|
+
</property>
|
|
22
|
+
<property name="layoutDirection">
|
|
23
|
+
<enum>Qt::LeftToRight</enum>
|
|
24
|
+
</property>
|
|
25
|
+
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
26
|
+
<item>
|
|
27
|
+
<layout class="QHBoxLayout" name="horizontalLayout_12">
|
|
28
|
+
<item>
|
|
29
|
+
<widget class="QTabWidget" name="tabWidget">
|
|
30
|
+
<property name="currentIndex">
|
|
31
|
+
<number>2</number>
|
|
32
|
+
</property>
|
|
33
|
+
<widget class="QWidget" name="tab_rate">
|
|
34
|
+
<attribute name="title">
|
|
35
|
+
<string>Rate</string>
|
|
36
|
+
</attribute>
|
|
37
|
+
<layout class="QHBoxLayout" name="horizontalLayout_9">
|
|
38
|
+
<item>
|
|
39
|
+
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
40
|
+
<item>
|
|
41
|
+
<layout class="QGridLayout" name="grid_rate">
|
|
42
|
+
<item row="1" column="0">
|
|
43
|
+
<widget class="QLabel" name="label_3">
|
|
44
|
+
<property name="sizePolicy">
|
|
45
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
46
|
+
<horstretch>0</horstretch>
|
|
47
|
+
<verstretch>0</verstretch>
|
|
48
|
+
</sizepolicy>
|
|
49
|
+
</property>
|
|
50
|
+
<property name="font">
|
|
51
|
+
<font>
|
|
52
|
+
<weight>75</weight>
|
|
53
|
+
<bold>true</bold>
|
|
54
|
+
</font>
|
|
55
|
+
</property>
|
|
56
|
+
<property name="text">
|
|
57
|
+
<string>Roll</string>
|
|
58
|
+
</property>
|
|
59
|
+
</widget>
|
|
60
|
+
</item>
|
|
61
|
+
<item row="3" column="0">
|
|
62
|
+
<widget class="QLabel" name="label_5">
|
|
63
|
+
<property name="sizePolicy">
|
|
64
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
65
|
+
<horstretch>0</horstretch>
|
|
66
|
+
<verstretch>0</verstretch>
|
|
67
|
+
</sizepolicy>
|
|
68
|
+
</property>
|
|
69
|
+
<property name="font">
|
|
70
|
+
<font>
|
|
71
|
+
<weight>75</weight>
|
|
72
|
+
<bold>true</bold>
|
|
73
|
+
</font>
|
|
74
|
+
</property>
|
|
75
|
+
<property name="text">
|
|
76
|
+
<string>Yaw</string>
|
|
77
|
+
</property>
|
|
78
|
+
</widget>
|
|
79
|
+
</item>
|
|
80
|
+
<item row="0" column="1">
|
|
81
|
+
<widget class="QLabel" name="label_6">
|
|
82
|
+
<property name="font">
|
|
83
|
+
<font>
|
|
84
|
+
<weight>75</weight>
|
|
85
|
+
<bold>true</bold>
|
|
86
|
+
</font>
|
|
87
|
+
</property>
|
|
88
|
+
<property name="text">
|
|
89
|
+
<string>P (proportional gain)</string>
|
|
90
|
+
</property>
|
|
91
|
+
<property name="alignment">
|
|
92
|
+
<set>Qt::AlignCenter</set>
|
|
93
|
+
</property>
|
|
94
|
+
</widget>
|
|
95
|
+
</item>
|
|
96
|
+
<item row="0" column="2">
|
|
97
|
+
<widget class="QLabel" name="label_7">
|
|
98
|
+
<property name="font">
|
|
99
|
+
<font>
|
|
100
|
+
<weight>75</weight>
|
|
101
|
+
<bold>true</bold>
|
|
102
|
+
</font>
|
|
103
|
+
</property>
|
|
104
|
+
<property name="text">
|
|
105
|
+
<string>I (integral gain)</string>
|
|
106
|
+
</property>
|
|
107
|
+
<property name="alignment">
|
|
108
|
+
<set>Qt::AlignCenter</set>
|
|
109
|
+
</property>
|
|
110
|
+
</widget>
|
|
111
|
+
</item>
|
|
112
|
+
<item row="1" column="5" rowspan="2">
|
|
113
|
+
<widget class="QCheckBox" name="rate_link_checkbox">
|
|
114
|
+
<property name="sizePolicy">
|
|
115
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
116
|
+
<horstretch>0</horstretch>
|
|
117
|
+
<verstretch>0</verstretch>
|
|
118
|
+
</sizepolicy>
|
|
119
|
+
</property>
|
|
120
|
+
<property name="text">
|
|
121
|
+
<string>Link roll and pitch</string>
|
|
122
|
+
</property>
|
|
123
|
+
</widget>
|
|
124
|
+
</item>
|
|
125
|
+
<item row="2" column="0">
|
|
126
|
+
<widget class="QLabel" name="label_4">
|
|
127
|
+
<property name="sizePolicy">
|
|
128
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
129
|
+
<horstretch>0</horstretch>
|
|
130
|
+
<verstretch>0</verstretch>
|
|
131
|
+
</sizepolicy>
|
|
132
|
+
</property>
|
|
133
|
+
<property name="font">
|
|
134
|
+
<font>
|
|
135
|
+
<weight>75</weight>
|
|
136
|
+
<bold>true</bold>
|
|
137
|
+
</font>
|
|
138
|
+
</property>
|
|
139
|
+
<property name="text">
|
|
140
|
+
<string>Pitch</string>
|
|
141
|
+
</property>
|
|
142
|
+
</widget>
|
|
143
|
+
</item>
|
|
144
|
+
<item row="0" column="3">
|
|
145
|
+
<widget class="QLabel" name="label_14">
|
|
146
|
+
<property name="font">
|
|
147
|
+
<font>
|
|
148
|
+
<weight>75</weight>
|
|
149
|
+
<bold>true</bold>
|
|
150
|
+
</font>
|
|
151
|
+
</property>
|
|
152
|
+
<property name="text">
|
|
153
|
+
<string>D (derivative gain)</string>
|
|
154
|
+
</property>
|
|
155
|
+
<property name="alignment">
|
|
156
|
+
<set>Qt::AlignCenter</set>
|
|
157
|
+
</property>
|
|
158
|
+
</widget>
|
|
159
|
+
</item>
|
|
160
|
+
<item row="1" column="4" rowspan="2">
|
|
161
|
+
<widget class="Line" name="line_6">
|
|
162
|
+
<property name="frameShadow">
|
|
163
|
+
<enum>QFrame::Raised</enum>
|
|
164
|
+
</property>
|
|
165
|
+
<property name="lineWidth">
|
|
166
|
+
<number>4</number>
|
|
167
|
+
</property>
|
|
168
|
+
<property name="midLineWidth">
|
|
169
|
+
<number>0</number>
|
|
170
|
+
</property>
|
|
171
|
+
<property name="orientation">
|
|
172
|
+
<enum>Qt::Vertical</enum>
|
|
173
|
+
</property>
|
|
174
|
+
</widget>
|
|
175
|
+
</item>
|
|
176
|
+
</layout>
|
|
177
|
+
</item>
|
|
178
|
+
</layout>
|
|
179
|
+
</item>
|
|
180
|
+
</layout>
|
|
181
|
+
</widget>
|
|
182
|
+
<widget class="QWidget" name="tab_attitude">
|
|
183
|
+
<attribute name="title">
|
|
184
|
+
<string>Attitude</string>
|
|
185
|
+
</attribute>
|
|
186
|
+
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
187
|
+
<item>
|
|
188
|
+
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
189
|
+
<item>
|
|
190
|
+
<layout class="QGridLayout" name="grid_attitude">
|
|
191
|
+
<item row="0" column="2">
|
|
192
|
+
<widget class="QLabel" name="label_12">
|
|
193
|
+
<property name="font">
|
|
194
|
+
<font>
|
|
195
|
+
<weight>75</weight>
|
|
196
|
+
<bold>true</bold>
|
|
197
|
+
</font>
|
|
198
|
+
</property>
|
|
199
|
+
<property name="text">
|
|
200
|
+
<string>I (integral gain)</string>
|
|
201
|
+
</property>
|
|
202
|
+
<property name="alignment">
|
|
203
|
+
<set>Qt::AlignCenter</set>
|
|
204
|
+
</property>
|
|
205
|
+
</widget>
|
|
206
|
+
</item>
|
|
207
|
+
<item row="0" column="3">
|
|
208
|
+
<widget class="QLabel" name="label_13">
|
|
209
|
+
<property name="font">
|
|
210
|
+
<font>
|
|
211
|
+
<weight>75</weight>
|
|
212
|
+
<bold>true</bold>
|
|
213
|
+
</font>
|
|
214
|
+
</property>
|
|
215
|
+
<property name="text">
|
|
216
|
+
<string>D (derivative gain)</string>
|
|
217
|
+
</property>
|
|
218
|
+
<property name="alignment">
|
|
219
|
+
<set>Qt::AlignCenter</set>
|
|
220
|
+
</property>
|
|
221
|
+
</widget>
|
|
222
|
+
</item>
|
|
223
|
+
<item row="0" column="1">
|
|
224
|
+
<widget class="QLabel" name="label_9">
|
|
225
|
+
<property name="font">
|
|
226
|
+
<font>
|
|
227
|
+
<weight>75</weight>
|
|
228
|
+
<bold>true</bold>
|
|
229
|
+
</font>
|
|
230
|
+
</property>
|
|
231
|
+
<property name="text">
|
|
232
|
+
<string>P (proportional gain)</string>
|
|
233
|
+
</property>
|
|
234
|
+
<property name="alignment">
|
|
235
|
+
<set>Qt::AlignCenter</set>
|
|
236
|
+
</property>
|
|
237
|
+
</widget>
|
|
238
|
+
</item>
|
|
239
|
+
<item row="2" column="0">
|
|
240
|
+
<widget class="QLabel" name="label_10">
|
|
241
|
+
<property name="sizePolicy">
|
|
242
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
243
|
+
<horstretch>0</horstretch>
|
|
244
|
+
<verstretch>0</verstretch>
|
|
245
|
+
</sizepolicy>
|
|
246
|
+
</property>
|
|
247
|
+
<property name="font">
|
|
248
|
+
<font>
|
|
249
|
+
<weight>75</weight>
|
|
250
|
+
<bold>true</bold>
|
|
251
|
+
</font>
|
|
252
|
+
</property>
|
|
253
|
+
<property name="text">
|
|
254
|
+
<string>Pitch</string>
|
|
255
|
+
</property>
|
|
256
|
+
</widget>
|
|
257
|
+
</item>
|
|
258
|
+
<item row="3" column="0">
|
|
259
|
+
<widget class="QLabel" name="label_11">
|
|
260
|
+
<property name="sizePolicy">
|
|
261
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
262
|
+
<horstretch>0</horstretch>
|
|
263
|
+
<verstretch>0</verstretch>
|
|
264
|
+
</sizepolicy>
|
|
265
|
+
</property>
|
|
266
|
+
<property name="font">
|
|
267
|
+
<font>
|
|
268
|
+
<weight>75</weight>
|
|
269
|
+
<bold>true</bold>
|
|
270
|
+
</font>
|
|
271
|
+
</property>
|
|
272
|
+
<property name="text">
|
|
273
|
+
<string>Yaw</string>
|
|
274
|
+
</property>
|
|
275
|
+
</widget>
|
|
276
|
+
</item>
|
|
277
|
+
<item row="1" column="5" rowspan="2">
|
|
278
|
+
<widget class="QCheckBox" name="attitude_link_checkbox">
|
|
279
|
+
<property name="sizePolicy">
|
|
280
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
281
|
+
<horstretch>0</horstretch>
|
|
282
|
+
<verstretch>0</verstretch>
|
|
283
|
+
</sizepolicy>
|
|
284
|
+
</property>
|
|
285
|
+
<property name="text">
|
|
286
|
+
<string>Link roll and pitch</string>
|
|
287
|
+
</property>
|
|
288
|
+
</widget>
|
|
289
|
+
</item>
|
|
290
|
+
<item row="1" column="0">
|
|
291
|
+
<widget class="QLabel" name="label_8">
|
|
292
|
+
<property name="sizePolicy">
|
|
293
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
294
|
+
<horstretch>0</horstretch>
|
|
295
|
+
<verstretch>0</verstretch>
|
|
296
|
+
</sizepolicy>
|
|
297
|
+
</property>
|
|
298
|
+
<property name="font">
|
|
299
|
+
<font>
|
|
300
|
+
<weight>75</weight>
|
|
301
|
+
<bold>true</bold>
|
|
302
|
+
</font>
|
|
303
|
+
</property>
|
|
304
|
+
<property name="text">
|
|
305
|
+
<string>Roll</string>
|
|
306
|
+
</property>
|
|
307
|
+
</widget>
|
|
308
|
+
</item>
|
|
309
|
+
<item row="1" column="4" rowspan="2">
|
|
310
|
+
<widget class="Line" name="line_5">
|
|
311
|
+
<property name="frameShadow">
|
|
312
|
+
<enum>QFrame::Raised</enum>
|
|
313
|
+
</property>
|
|
314
|
+
<property name="lineWidth">
|
|
315
|
+
<number>4</number>
|
|
316
|
+
</property>
|
|
317
|
+
<property name="midLineWidth">
|
|
318
|
+
<number>0</number>
|
|
319
|
+
</property>
|
|
320
|
+
<property name="orientation">
|
|
321
|
+
<enum>Qt::Vertical</enum>
|
|
322
|
+
</property>
|
|
323
|
+
</widget>
|
|
324
|
+
</item>
|
|
325
|
+
</layout>
|
|
326
|
+
</item>
|
|
327
|
+
</layout>
|
|
328
|
+
</item>
|
|
329
|
+
</layout>
|
|
330
|
+
</widget>
|
|
331
|
+
<widget class="QWidget" name="tab_vel_ctrl">
|
|
332
|
+
<attribute name="title">
|
|
333
|
+
<string>Velocity ctrl</string>
|
|
334
|
+
</attribute>
|
|
335
|
+
<layout class="QVBoxLayout" name="verticalLayout">
|
|
336
|
+
<item>
|
|
337
|
+
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
338
|
+
<item>
|
|
339
|
+
<layout class="QGridLayout" name="grid_vel_ctrl">
|
|
340
|
+
<item row="0" column="4">
|
|
341
|
+
<widget class="QLabel" name="label_28">
|
|
342
|
+
<property name="font">
|
|
343
|
+
<font>
|
|
344
|
+
<weight>75</weight>
|
|
345
|
+
<bold>true</bold>
|
|
346
|
+
</font>
|
|
347
|
+
</property>
|
|
348
|
+
<property name="text">
|
|
349
|
+
<string>FF (feed-forward gain)</string>
|
|
350
|
+
</property>
|
|
351
|
+
<property name="alignment">
|
|
352
|
+
<set>Qt::AlignCenter</set>
|
|
353
|
+
</property>
|
|
354
|
+
</widget>
|
|
355
|
+
</item>
|
|
356
|
+
<item row="3" column="0">
|
|
357
|
+
<widget class="QLabel" name="label_24">
|
|
358
|
+
<property name="sizePolicy">
|
|
359
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
360
|
+
<horstretch>0</horstretch>
|
|
361
|
+
<verstretch>0</verstretch>
|
|
362
|
+
</sizepolicy>
|
|
363
|
+
</property>
|
|
364
|
+
<property name="font">
|
|
365
|
+
<font>
|
|
366
|
+
<weight>75</weight>
|
|
367
|
+
<bold>true</bold>
|
|
368
|
+
</font>
|
|
369
|
+
</property>
|
|
370
|
+
<property name="text">
|
|
371
|
+
<string>Z</string>
|
|
372
|
+
</property>
|
|
373
|
+
</widget>
|
|
374
|
+
</item>
|
|
375
|
+
<item row="2" column="0">
|
|
376
|
+
<widget class="QLabel" name="label_23">
|
|
377
|
+
<property name="sizePolicy">
|
|
378
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
379
|
+
<horstretch>0</horstretch>
|
|
380
|
+
<verstretch>0</verstretch>
|
|
381
|
+
</sizepolicy>
|
|
382
|
+
</property>
|
|
383
|
+
<property name="font">
|
|
384
|
+
<font>
|
|
385
|
+
<weight>75</weight>
|
|
386
|
+
<bold>true</bold>
|
|
387
|
+
</font>
|
|
388
|
+
</property>
|
|
389
|
+
<property name="text">
|
|
390
|
+
<string>Y</string>
|
|
391
|
+
</property>
|
|
392
|
+
</widget>
|
|
393
|
+
</item>
|
|
394
|
+
<item row="1" column="6" rowspan="2">
|
|
395
|
+
<widget class="QCheckBox" name="velocity_link_checkbox">
|
|
396
|
+
<property name="sizePolicy">
|
|
397
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
398
|
+
<horstretch>0</horstretch>
|
|
399
|
+
<verstretch>0</verstretch>
|
|
400
|
+
</sizepolicy>
|
|
401
|
+
</property>
|
|
402
|
+
<property name="text">
|
|
403
|
+
<string>Link x and y</string>
|
|
404
|
+
</property>
|
|
405
|
+
</widget>
|
|
406
|
+
</item>
|
|
407
|
+
<item row="0" column="3">
|
|
408
|
+
<widget class="QLabel" name="label_27">
|
|
409
|
+
<property name="font">
|
|
410
|
+
<font>
|
|
411
|
+
<weight>75</weight>
|
|
412
|
+
<bold>true</bold>
|
|
413
|
+
</font>
|
|
414
|
+
</property>
|
|
415
|
+
<property name="text">
|
|
416
|
+
<string>D (derivative gain)</string>
|
|
417
|
+
</property>
|
|
418
|
+
<property name="alignment">
|
|
419
|
+
<set>Qt::AlignCenter</set>
|
|
420
|
+
</property>
|
|
421
|
+
</widget>
|
|
422
|
+
</item>
|
|
423
|
+
<item row="0" column="1">
|
|
424
|
+
<widget class="QLabel" name="label_25">
|
|
425
|
+
<property name="font">
|
|
426
|
+
<font>
|
|
427
|
+
<weight>75</weight>
|
|
428
|
+
<bold>true</bold>
|
|
429
|
+
</font>
|
|
430
|
+
</property>
|
|
431
|
+
<property name="text">
|
|
432
|
+
<string>P (proportional gain)</string>
|
|
433
|
+
</property>
|
|
434
|
+
<property name="alignment">
|
|
435
|
+
<set>Qt::AlignCenter</set>
|
|
436
|
+
</property>
|
|
437
|
+
</widget>
|
|
438
|
+
</item>
|
|
439
|
+
<item row="0" column="2">
|
|
440
|
+
<widget class="QLabel" name="label_26">
|
|
441
|
+
<property name="font">
|
|
442
|
+
<font>
|
|
443
|
+
<weight>75</weight>
|
|
444
|
+
<bold>true</bold>
|
|
445
|
+
</font>
|
|
446
|
+
</property>
|
|
447
|
+
<property name="text">
|
|
448
|
+
<string>I (integral gain)</string>
|
|
449
|
+
</property>
|
|
450
|
+
<property name="alignment">
|
|
451
|
+
<set>Qt::AlignCenter</set>
|
|
452
|
+
</property>
|
|
453
|
+
</widget>
|
|
454
|
+
</item>
|
|
455
|
+
<item row="1" column="0">
|
|
456
|
+
<widget class="QLabel" name="label_22">
|
|
457
|
+
<property name="sizePolicy">
|
|
458
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
459
|
+
<horstretch>0</horstretch>
|
|
460
|
+
<verstretch>0</verstretch>
|
|
461
|
+
</sizepolicy>
|
|
462
|
+
</property>
|
|
463
|
+
<property name="font">
|
|
464
|
+
<font>
|
|
465
|
+
<weight>75</weight>
|
|
466
|
+
<bold>true</bold>
|
|
467
|
+
</font>
|
|
468
|
+
</property>
|
|
469
|
+
<property name="text">
|
|
470
|
+
<string>X</string>
|
|
471
|
+
</property>
|
|
472
|
+
</widget>
|
|
473
|
+
</item>
|
|
474
|
+
<item row="1" column="5" rowspan="2">
|
|
475
|
+
<widget class="Line" name="line_8">
|
|
476
|
+
<property name="frameShadow">
|
|
477
|
+
<enum>QFrame::Raised</enum>
|
|
478
|
+
</property>
|
|
479
|
+
<property name="lineWidth">
|
|
480
|
+
<number>4</number>
|
|
481
|
+
</property>
|
|
482
|
+
<property name="orientation">
|
|
483
|
+
<enum>Qt::Vertical</enum>
|
|
484
|
+
</property>
|
|
485
|
+
</widget>
|
|
486
|
+
</item>
|
|
487
|
+
</layout>
|
|
488
|
+
</item>
|
|
489
|
+
</layout>
|
|
490
|
+
</item>
|
|
491
|
+
</layout>
|
|
492
|
+
</widget>
|
|
493
|
+
<widget class="QWidget" name="tab_pos_ctrl">
|
|
494
|
+
<attribute name="title">
|
|
495
|
+
<string>Position ctrl</string>
|
|
496
|
+
</attribute>
|
|
497
|
+
<layout class="QVBoxLayout" name="verticalLayout_7">
|
|
498
|
+
<item>
|
|
499
|
+
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
|
500
|
+
<item>
|
|
501
|
+
<layout class="QGridLayout" name="grid_pos_ctrl">
|
|
502
|
+
<item row="0" column="2">
|
|
503
|
+
<widget class="QLabel" name="label_19">
|
|
504
|
+
<property name="font">
|
|
505
|
+
<font>
|
|
506
|
+
<weight>75</weight>
|
|
507
|
+
<bold>true</bold>
|
|
508
|
+
</font>
|
|
509
|
+
</property>
|
|
510
|
+
<property name="text">
|
|
511
|
+
<string>I (integral gain)</string>
|
|
512
|
+
</property>
|
|
513
|
+
<property name="alignment">
|
|
514
|
+
<set>Qt::AlignCenter</set>
|
|
515
|
+
</property>
|
|
516
|
+
</widget>
|
|
517
|
+
</item>
|
|
518
|
+
<item row="4" column="1">
|
|
519
|
+
<widget class="Line" name="line_2">
|
|
520
|
+
<property name="orientation">
|
|
521
|
+
<enum>Qt::Horizontal</enum>
|
|
522
|
+
</property>
|
|
523
|
+
</widget>
|
|
524
|
+
</item>
|
|
525
|
+
<item row="2" column="0">
|
|
526
|
+
<widget class="QLabel" name="label_17">
|
|
527
|
+
<property name="sizePolicy">
|
|
528
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
529
|
+
<horstretch>0</horstretch>
|
|
530
|
+
<verstretch>0</verstretch>
|
|
531
|
+
</sizepolicy>
|
|
532
|
+
</property>
|
|
533
|
+
<property name="font">
|
|
534
|
+
<font>
|
|
535
|
+
<weight>75</weight>
|
|
536
|
+
<bold>true</bold>
|
|
537
|
+
</font>
|
|
538
|
+
</property>
|
|
539
|
+
<property name="text">
|
|
540
|
+
<string>Y</string>
|
|
541
|
+
</property>
|
|
542
|
+
</widget>
|
|
543
|
+
</item>
|
|
544
|
+
<item row="4" column="2">
|
|
545
|
+
<widget class="Line" name="line_3">
|
|
546
|
+
<property name="orientation">
|
|
547
|
+
<enum>Qt::Horizontal</enum>
|
|
548
|
+
</property>
|
|
549
|
+
</widget>
|
|
550
|
+
</item>
|
|
551
|
+
<item row="1" column="5" rowspan="2">
|
|
552
|
+
<widget class="QCheckBox" name="position_link_checkbox">
|
|
553
|
+
<property name="sizePolicy">
|
|
554
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
555
|
+
<horstretch>0</horstretch>
|
|
556
|
+
<verstretch>0</verstretch>
|
|
557
|
+
</sizepolicy>
|
|
558
|
+
</property>
|
|
559
|
+
<property name="text">
|
|
560
|
+
<string>Link x and y</string>
|
|
561
|
+
</property>
|
|
562
|
+
</widget>
|
|
563
|
+
</item>
|
|
564
|
+
<item row="0" column="3">
|
|
565
|
+
<widget class="QLabel" name="label_20">
|
|
566
|
+
<property name="font">
|
|
567
|
+
<font>
|
|
568
|
+
<weight>75</weight>
|
|
569
|
+
<bold>true</bold>
|
|
570
|
+
</font>
|
|
571
|
+
</property>
|
|
572
|
+
<property name="text">
|
|
573
|
+
<string>D (derivative gain)</string>
|
|
574
|
+
</property>
|
|
575
|
+
<property name="alignment">
|
|
576
|
+
<set>Qt::AlignCenter</set>
|
|
577
|
+
</property>
|
|
578
|
+
</widget>
|
|
579
|
+
</item>
|
|
580
|
+
<item row="4" column="3">
|
|
581
|
+
<widget class="Line" name="line_4">
|
|
582
|
+
<property name="orientation">
|
|
583
|
+
<enum>Qt::Horizontal</enum>
|
|
584
|
+
</property>
|
|
585
|
+
</widget>
|
|
586
|
+
</item>
|
|
587
|
+
<item row="3" column="0">
|
|
588
|
+
<widget class="QLabel" name="label_18">
|
|
589
|
+
<property name="sizePolicy">
|
|
590
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
591
|
+
<horstretch>0</horstretch>
|
|
592
|
+
<verstretch>0</verstretch>
|
|
593
|
+
</sizepolicy>
|
|
594
|
+
</property>
|
|
595
|
+
<property name="font">
|
|
596
|
+
<font>
|
|
597
|
+
<weight>75</weight>
|
|
598
|
+
<bold>true</bold>
|
|
599
|
+
</font>
|
|
600
|
+
</property>
|
|
601
|
+
<property name="text">
|
|
602
|
+
<string>Z</string>
|
|
603
|
+
</property>
|
|
604
|
+
</widget>
|
|
605
|
+
</item>
|
|
606
|
+
<item row="0" column="1">
|
|
607
|
+
<widget class="QLabel" name="label_2">
|
|
608
|
+
<property name="font">
|
|
609
|
+
<font>
|
|
610
|
+
<weight>75</weight>
|
|
611
|
+
<bold>true</bold>
|
|
612
|
+
</font>
|
|
613
|
+
</property>
|
|
614
|
+
<property name="text">
|
|
615
|
+
<string>P (proportional gain)</string>
|
|
616
|
+
</property>
|
|
617
|
+
<property name="alignment">
|
|
618
|
+
<set>Qt::AlignCenter</set>
|
|
619
|
+
</property>
|
|
620
|
+
</widget>
|
|
621
|
+
</item>
|
|
622
|
+
<item row="5" column="0">
|
|
623
|
+
<widget class="QLabel" name="label_21">
|
|
624
|
+
<property name="sizePolicy">
|
|
625
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
626
|
+
<horstretch>0</horstretch>
|
|
627
|
+
<verstretch>0</verstretch>
|
|
628
|
+
</sizepolicy>
|
|
629
|
+
</property>
|
|
630
|
+
<property name="font">
|
|
631
|
+
<font>
|
|
632
|
+
<weight>75</weight>
|
|
633
|
+
<bold>true</bold>
|
|
634
|
+
</font>
|
|
635
|
+
</property>
|
|
636
|
+
<property name="text">
|
|
637
|
+
<string>Hover thrust</string>
|
|
638
|
+
</property>
|
|
639
|
+
</widget>
|
|
640
|
+
</item>
|
|
641
|
+
<item row="4" column="0">
|
|
642
|
+
<widget class="Line" name="line">
|
|
643
|
+
<property name="sizePolicy">
|
|
644
|
+
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
|
645
|
+
<horstretch>0</horstretch>
|
|
646
|
+
<verstretch>0</verstretch>
|
|
647
|
+
</sizepolicy>
|
|
648
|
+
</property>
|
|
649
|
+
<property name="orientation">
|
|
650
|
+
<enum>Qt::Horizontal</enum>
|
|
651
|
+
</property>
|
|
652
|
+
</widget>
|
|
653
|
+
</item>
|
|
654
|
+
<item row="1" column="0">
|
|
655
|
+
<widget class="QLabel" name="label_16">
|
|
656
|
+
<property name="sizePolicy">
|
|
657
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Preferred">
|
|
658
|
+
<horstretch>0</horstretch>
|
|
659
|
+
<verstretch>0</verstretch>
|
|
660
|
+
</sizepolicy>
|
|
661
|
+
</property>
|
|
662
|
+
<property name="font">
|
|
663
|
+
<font>
|
|
664
|
+
<weight>75</weight>
|
|
665
|
+
<bold>true</bold>
|
|
666
|
+
</font>
|
|
667
|
+
</property>
|
|
668
|
+
<property name="text">
|
|
669
|
+
<string>X</string>
|
|
670
|
+
</property>
|
|
671
|
+
</widget>
|
|
672
|
+
</item>
|
|
673
|
+
<item row="1" column="4" rowspan="2">
|
|
674
|
+
<widget class="Line" name="line_7">
|
|
675
|
+
<property name="frameShadow">
|
|
676
|
+
<enum>QFrame::Raised</enum>
|
|
677
|
+
</property>
|
|
678
|
+
<property name="lineWidth">
|
|
679
|
+
<number>4</number>
|
|
680
|
+
</property>
|
|
681
|
+
<property name="orientation">
|
|
682
|
+
<enum>Qt::Vertical</enum>
|
|
683
|
+
</property>
|
|
684
|
+
</widget>
|
|
685
|
+
</item>
|
|
686
|
+
</layout>
|
|
687
|
+
</item>
|
|
688
|
+
</layout>
|
|
689
|
+
</item>
|
|
690
|
+
</layout>
|
|
691
|
+
</widget>
|
|
692
|
+
</widget>
|
|
693
|
+
</item>
|
|
694
|
+
<item>
|
|
695
|
+
<spacer name="horizontalSpacer_4">
|
|
696
|
+
<property name="orientation">
|
|
697
|
+
<enum>Qt::Horizontal</enum>
|
|
698
|
+
</property>
|
|
699
|
+
<property name="sizeHint" stdset="0">
|
|
700
|
+
<size>
|
|
701
|
+
<width>40</width>
|
|
702
|
+
<height>20</height>
|
|
703
|
+
</size>
|
|
704
|
+
</property>
|
|
705
|
+
</spacer>
|
|
706
|
+
</item>
|
|
707
|
+
</layout>
|
|
708
|
+
</item>
|
|
709
|
+
<item>
|
|
710
|
+
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
711
|
+
<item>
|
|
712
|
+
<widget class="QPushButton" name="default_values_button">
|
|
713
|
+
<property name="toolTip">
|
|
714
|
+
<string>Get the default tuning values for the tuning parameters (this will not change the stored values)</string>
|
|
715
|
+
</property>
|
|
716
|
+
<property name="text">
|
|
717
|
+
<string>Default values</string>
|
|
718
|
+
</property>
|
|
719
|
+
</widget>
|
|
720
|
+
</item>
|
|
721
|
+
<item>
|
|
722
|
+
<widget class="QPushButton" name="store_button">
|
|
723
|
+
<property name="toolTip">
|
|
724
|
+
<string>Store values in the persistent memory to use them after a restart.</string>
|
|
725
|
+
</property>
|
|
726
|
+
<property name="text">
|
|
727
|
+
<string>Persist values</string>
|
|
728
|
+
</property>
|
|
729
|
+
</widget>
|
|
730
|
+
</item>
|
|
731
|
+
<item>
|
|
732
|
+
<widget class="QPushButton" name="clear_stored_button">
|
|
733
|
+
<property name="toolTip">
|
|
734
|
+
<string>Clear the persisted values. The tuning parameters will get default values after restart.</string>
|
|
735
|
+
</property>
|
|
736
|
+
<property name="text">
|
|
737
|
+
<string>Clear persisted values</string>
|
|
738
|
+
</property>
|
|
739
|
+
</widget>
|
|
740
|
+
</item>
|
|
741
|
+
<item>
|
|
742
|
+
<spacer name="horizontalSpacer">
|
|
743
|
+
<property name="orientation">
|
|
744
|
+
<enum>Qt::Horizontal</enum>
|
|
745
|
+
</property>
|
|
746
|
+
<property name="sizeHint" stdset="0">
|
|
747
|
+
<size>
|
|
748
|
+
<width>40</width>
|
|
749
|
+
<height>20</height>
|
|
750
|
+
</size>
|
|
751
|
+
</property>
|
|
752
|
+
</spacer>
|
|
753
|
+
</item>
|
|
754
|
+
</layout>
|
|
755
|
+
</item>
|
|
756
|
+
<item>
|
|
757
|
+
<spacer name="verticalSpacer">
|
|
758
|
+
<property name="orientation">
|
|
759
|
+
<enum>Qt::Vertical</enum>
|
|
760
|
+
</property>
|
|
761
|
+
<property name="sizeHint" stdset="0">
|
|
762
|
+
<size>
|
|
763
|
+
<width>20</width>
|
|
764
|
+
<height>40</height>
|
|
765
|
+
</size>
|
|
766
|
+
</property>
|
|
767
|
+
</spacer>
|
|
768
|
+
</item>
|
|
769
|
+
</layout>
|
|
770
|
+
</widget>
|
|
771
|
+
<resources/>
|
|
772
|
+
<connections/>
|
|
773
|
+
</ui>
|