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
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
# -*- coding: utf-8 -*-
|
|
3
|
-
#
|
|
4
|
-
# || ____ _ __
|
|
5
|
-
# +------+ / __ )(_) /_______________ _____ ___
|
|
6
|
-
# | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \
|
|
7
|
-
# +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/
|
|
8
|
-
# || || /_____/_/\__/\___/_/ \__,_/ /___/\___/
|
|
9
|
-
#
|
|
10
|
-
# Copyright (C) 2011-2013 Bitcraze AB
|
|
11
|
-
#
|
|
12
|
-
# Crazyflie Nano Quadcopter Client
|
|
13
|
-
#
|
|
14
|
-
# This program is free software; you can redistribute it and/or
|
|
15
|
-
# modify it under the terms of the GNU General Public License
|
|
16
|
-
# as published by the Free Software Foundation; either version 2
|
|
17
|
-
# of the License, or (at your option) any later version.
|
|
18
|
-
#
|
|
19
|
-
# This program is distributed in the hope that it will be useful,
|
|
20
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22
|
-
# GNU General Public License for more details.
|
|
23
|
-
# You should have received a copy of the GNU General Public License along with
|
|
24
|
-
# this program; if not, write to the Free Software Foundation, Inc.,
|
|
25
|
-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
26
|
-
"""
|
|
27
|
-
Toolbox used to interact with the DebugDriver using a designated port. It's
|
|
28
|
-
intended to be used for debugging.
|
|
29
|
-
"""
|
|
30
|
-
import struct
|
|
31
|
-
|
|
32
|
-
from cflib.crtp.crtpstack import CRTPPacket
|
|
33
|
-
from cflib.crtp.crtpstack import CRTPPort
|
|
34
|
-
from PyQt5 import QtWidgets
|
|
35
|
-
from PyQt5 import uic
|
|
36
|
-
from PyQt5.QtCore import pyqtSignal
|
|
37
|
-
from PyQt5.QtCore import Qt
|
|
38
|
-
|
|
39
|
-
import cfclient
|
|
40
|
-
|
|
41
|
-
__author__ = 'Bitcraze AB'
|
|
42
|
-
__all__ = ['DebugDriverToolbox']
|
|
43
|
-
|
|
44
|
-
debugdriver_tab_class = uic.loadUiType(
|
|
45
|
-
cfclient.module_path +
|
|
46
|
-
"/ui/toolboxes/debugDriverToolbox.ui")[0]
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
class DebugDriverToolbox(QtWidgets.QWidget, debugdriver_tab_class):
|
|
50
|
-
"""Used to interact with the DebugDriver toolbox"""
|
|
51
|
-
connectionDoneSignal = pyqtSignal(str)
|
|
52
|
-
disconnectedSignal = pyqtSignal(str)
|
|
53
|
-
|
|
54
|
-
def __init__(self, helper, *args):
|
|
55
|
-
super(DebugDriverToolbox, self).__init__(*args)
|
|
56
|
-
self.setupUi(self)
|
|
57
|
-
|
|
58
|
-
self.helper = helper
|
|
59
|
-
|
|
60
|
-
# Connected / disconnected signals
|
|
61
|
-
self.helper.cf.connected.add_callback(
|
|
62
|
-
self.connectionDoneSignal.emit)
|
|
63
|
-
self.connectionDoneSignal.connect(self.connectionDone)
|
|
64
|
-
self.helper.cf.disconnected.add_callback(self.disconnectedSignal.emit)
|
|
65
|
-
self.disconnectedSignal.connect(self.disconnected)
|
|
66
|
-
|
|
67
|
-
self.linkQuality.valueChanged.connect(self.linkQualityChanged)
|
|
68
|
-
self.forceDisconnect.pressed.connect(self.forceDisconnecPressed)
|
|
69
|
-
|
|
70
|
-
def forceDisconnecPressed(self):
|
|
71
|
-
if (self.helper.cf.link is not None):
|
|
72
|
-
p = CRTPPacket()
|
|
73
|
-
p.set_header(CRTPPort.DEBUGDRIVER, 0)
|
|
74
|
-
p.data = struct.pack('<B', 1) # Force disconnect
|
|
75
|
-
self.helper.cf.send_packet(p)
|
|
76
|
-
|
|
77
|
-
def linkQualityChanged(self, value):
|
|
78
|
-
if (self.helper.cf.link is not None):
|
|
79
|
-
p = CRTPPacket()
|
|
80
|
-
p.set_header(CRTPPort.DEBUGDRIVER, 0)
|
|
81
|
-
p.data = struct.pack('<BB', 0, value) # Set link quality
|
|
82
|
-
self.helper.cf.send_packet(p)
|
|
83
|
-
|
|
84
|
-
def disconnected(self, linkURI):
|
|
85
|
-
if ("debug" in linkURI):
|
|
86
|
-
self.linkQuality.setEnabled(False)
|
|
87
|
-
self.forceDisconnect.setEnabled(False)
|
|
88
|
-
|
|
89
|
-
def connectionDone(self, linkURI):
|
|
90
|
-
if ("debug" in linkURI):
|
|
91
|
-
self.linkQuality.setEnabled(True)
|
|
92
|
-
self.forceDisconnect.setEnabled(True)
|
|
93
|
-
|
|
94
|
-
def getName(self):
|
|
95
|
-
return 'Debug driver'
|
|
96
|
-
|
|
97
|
-
def getTabName(self):
|
|
98
|
-
return 'Debug driver'
|
|
99
|
-
|
|
100
|
-
def enable(self):
|
|
101
|
-
return
|
|
102
|
-
|
|
103
|
-
def disable(self):
|
|
104
|
-
return
|
|
105
|
-
|
|
106
|
-
def preferedDockArea(self):
|
|
107
|
-
return Qt.RightDockWidgetArea
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env python
|
|
2
|
-
# -*- coding: utf-8 -*-
|
|
3
|
-
#
|
|
4
|
-
# || ____ _ __
|
|
5
|
-
# +------+ / __ )(_) /_______________ _____ ___
|
|
6
|
-
# | 0xBC | / __ / / __/ ___/ ___/ __ `/_ / / _ \
|
|
7
|
-
# +------+ / /_/ / / /_/ /__/ / / /_/ / / /_/ __/
|
|
8
|
-
# || || /_____/_/\__/\___/_/ \__,_/ /___/\___/
|
|
9
|
-
#
|
|
10
|
-
# Copyright (C) 2011-2013 Bitcraze AB
|
|
11
|
-
#
|
|
12
|
-
# Crazyflie Nano Quadcopter Client
|
|
13
|
-
#
|
|
14
|
-
# This program is free software; you can redistribute it and/or
|
|
15
|
-
# modify it under the terms of the GNU General Public License
|
|
16
|
-
# as published by the Free Software Foundation; either version 2
|
|
17
|
-
# of the License, or (at your option) any later version.
|
|
18
|
-
#
|
|
19
|
-
# This program is distributed in the hope that it will be useful,
|
|
20
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22
|
-
# GNU General Public License for more details.
|
|
23
|
-
|
|
24
|
-
# You should have received a copy of the GNU General Public License along with
|
|
25
|
-
# this program; if not, write to the Free Software Foundation, Inc.,
|
|
26
|
-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
27
|
-
|
|
28
|
-
"""
|
|
29
|
-
List all the available toolboxes so they can be used by the UI.
|
|
30
|
-
|
|
31
|
-
Dropping a new .py file into this directory will automatically list and load
|
|
32
|
-
it into the UI when it is started.
|
|
33
|
-
"""
|
|
34
|
-
from .ConsoleToolbox import ConsoleToolbox
|
|
35
|
-
from .CrtpSharkToolbox import CrtpSharkToolbox
|
|
36
|
-
from .DebugDriverToolbox import DebugDriverToolbox
|
|
37
|
-
|
|
38
|
-
__author__ = 'Bitcraze AB'
|
|
39
|
-
__all__ = []
|
|
40
|
-
|
|
41
|
-
toolboxes = [
|
|
42
|
-
ConsoleToolbox,
|
|
43
|
-
CrtpSharkToolbox,
|
|
44
|
-
DebugDriverToolbox
|
|
45
|
-
]
|
|
@@ -1,62 +0,0 @@
|
|
|
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>693</width>
|
|
10
|
-
<height>463</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>Form</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
17
|
-
<item>
|
|
18
|
-
<layout class="QGridLayout" name="gridLayout">
|
|
19
|
-
<item row="0" column="0">
|
|
20
|
-
<widget class="QTextEdit" name="console">
|
|
21
|
-
<property name="enabled">
|
|
22
|
-
<bool>true</bool>
|
|
23
|
-
</property>
|
|
24
|
-
<property name="contextMenuPolicy">
|
|
25
|
-
<enum>Qt::DefaultContextMenu</enum>
|
|
26
|
-
</property>
|
|
27
|
-
<property name="readOnly">
|
|
28
|
-
<bool>true</bool>
|
|
29
|
-
</property>
|
|
30
|
-
</widget>
|
|
31
|
-
</item>
|
|
32
|
-
<item row="1" column="0">
|
|
33
|
-
<widget class="QPushButton" name="clearButton">
|
|
34
|
-
<property name="text">
|
|
35
|
-
<string>Clear</string>
|
|
36
|
-
</property>
|
|
37
|
-
</widget>
|
|
38
|
-
</item>
|
|
39
|
-
</layout>
|
|
40
|
-
</item>
|
|
41
|
-
</layout>
|
|
42
|
-
</widget>
|
|
43
|
-
<resources/>
|
|
44
|
-
<connections>
|
|
45
|
-
<connection>
|
|
46
|
-
<sender>clearButton</sender>
|
|
47
|
-
<signal>clicked()</signal>
|
|
48
|
-
<receiver>console</receiver>
|
|
49
|
-
<slot>clear()</slot>
|
|
50
|
-
<hints>
|
|
51
|
-
<hint type="sourcelabel">
|
|
52
|
-
<x>346</x>
|
|
53
|
-
<y>437</y>
|
|
54
|
-
</hint>
|
|
55
|
-
<hint type="destinationlabel">
|
|
56
|
-
<x>346</x>
|
|
57
|
-
<y>212</y>
|
|
58
|
-
</hint>
|
|
59
|
-
</hints>
|
|
60
|
-
</connection>
|
|
61
|
-
</connections>
|
|
62
|
-
</ui>
|
|
@@ -1,86 +0,0 @@
|
|
|
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>400</width>
|
|
10
|
-
<height>300</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>Form</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
17
|
-
<item>
|
|
18
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
19
|
-
<item>
|
|
20
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
21
|
-
<item>
|
|
22
|
-
<widget class="QLabel" name="label">
|
|
23
|
-
<property name="text">
|
|
24
|
-
<string>DebugDriver Controls</string>
|
|
25
|
-
</property>
|
|
26
|
-
</widget>
|
|
27
|
-
</item>
|
|
28
|
-
</layout>
|
|
29
|
-
</item>
|
|
30
|
-
<item>
|
|
31
|
-
<layout class="QGridLayout" name="checkGrid">
|
|
32
|
-
<item row="1" column="1">
|
|
33
|
-
<widget class="QPushButton" name="forceDisconnect">
|
|
34
|
-
<property name="enabled">
|
|
35
|
-
<bool>false</bool>
|
|
36
|
-
</property>
|
|
37
|
-
<property name="text">
|
|
38
|
-
<string>Force disconnect</string>
|
|
39
|
-
</property>
|
|
40
|
-
</widget>
|
|
41
|
-
</item>
|
|
42
|
-
<item row="0" column="1">
|
|
43
|
-
<widget class="QSlider" name="linkQuality">
|
|
44
|
-
<property name="enabled">
|
|
45
|
-
<bool>false</bool>
|
|
46
|
-
</property>
|
|
47
|
-
<property name="maximum">
|
|
48
|
-
<number>100</number>
|
|
49
|
-
</property>
|
|
50
|
-
<property name="value">
|
|
51
|
-
<number>0</number>
|
|
52
|
-
</property>
|
|
53
|
-
<property name="orientation">
|
|
54
|
-
<enum>Qt::Horizontal</enum>
|
|
55
|
-
</property>
|
|
56
|
-
</widget>
|
|
57
|
-
</item>
|
|
58
|
-
<item row="0" column="0">
|
|
59
|
-
<widget class="QLabel" name="label_2">
|
|
60
|
-
<property name="text">
|
|
61
|
-
<string>Set Link Quality</string>
|
|
62
|
-
</property>
|
|
63
|
-
</widget>
|
|
64
|
-
</item>
|
|
65
|
-
</layout>
|
|
66
|
-
</item>
|
|
67
|
-
<item>
|
|
68
|
-
<spacer name="verticalSpacer">
|
|
69
|
-
<property name="orientation">
|
|
70
|
-
<enum>Qt::Vertical</enum>
|
|
71
|
-
</property>
|
|
72
|
-
<property name="sizeHint" stdset="0">
|
|
73
|
-
<size>
|
|
74
|
-
<width>20</width>
|
|
75
|
-
<height>40</height>
|
|
76
|
-
</size>
|
|
77
|
-
</property>
|
|
78
|
-
</spacer>
|
|
79
|
-
</item>
|
|
80
|
-
</layout>
|
|
81
|
-
</item>
|
|
82
|
-
</layout>
|
|
83
|
-
</widget>
|
|
84
|
-
<resources/>
|
|
85
|
-
<connections/>
|
|
86
|
-
</ui>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.0
|
|
2
|
-
Name: cfclient
|
|
3
|
-
Version: 2017.4
|
|
4
|
-
Summary: Bitcraze Cazyflie quadcopter client
|
|
5
|
-
Home-page: http://www.bitcraze.io
|
|
6
|
-
Author: Bitcraze team
|
|
7
|
-
Author-email: contact@bitcraze.se
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Keywords: quadcopter crazyflie
|
|
10
|
-
Platform: UNKNOWN
|
|
11
|
-
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.4
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.5
|
|
14
|
-
Requires-Dist: appdirs (==1.4.0)
|
|
15
|
-
Requires-Dist: cflib (>=0.1.1)
|
|
16
|
-
Requires-Dist: pyqtgraph (>=0.10)
|
|
17
|
-
Requires-Dist: pyzmq
|
|
18
|
-
Provides-Extra: dev
|
|
19
|
-
|
|
20
|
-
UNKNOWN
|
|
21
|
-
|
|
22
|
-
|
cfclient-2017.4.dist-info/RECORD
DELETED
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
cfclient/__init__.py,sha256=mp3f6NNt-awIfKJNx8TzH4aU1wMWmI1Wgn3V0AW9tYw,1851
|
|
2
|
-
cfclient/gui.py,sha256=chsu_CL8q9eknRofFv_yNz7z784NtiNlI1jMevsja8c,5215
|
|
3
|
-
cfclient/headless.py,sha256=s5jWjVq0YCoQXAKgf8Y5HQE3tUemZ4KR7RPlixchIXE,6707
|
|
4
|
-
cfclient/icon-256.png,sha256=SrUxND4cRHSRC_0LCPHIzwYRo1r9ygR1aw_D0BRxfoM,6554
|
|
5
|
-
cfclient/version.py,sha256=kBbQCF-Mdl44Jo0OOXoH0_34THLcc-AkNHVfJFlnEPE,20
|
|
6
|
-
cfclient/configs/config.json,sha256=VfpfpB6BfrnxgAMU26CAgQX0BVYMNClsyuDjXYx2iGI,814
|
|
7
|
-
cfclient/configs/input/Generic_OS_X.json,sha256=5v3gB2nRWGj9rTVWKUOa-7CSnNSm3tmVKw8-tHqCBX4,1031
|
|
8
|
-
cfclient/configs/input/Joystick.json,sha256=fGxIL0X8b-m7O0rUHLPdm1hVayKsvfw6rrPv20WW_Fs,1978
|
|
9
|
-
cfclient/configs/input/PS3_Mode_1.json,sha256=yl3MhTyVvZVkzNXF8Agg4Ljy-OsIqm9ZK-kY2qXx46U,1119
|
|
10
|
-
cfclient/configs/input/PS3_Mode_2.json,sha256=ySJRSITyrYy0OVmaoEd8wQ4KfJG9IyhJzkhPRjwKfCk,1021
|
|
11
|
-
cfclient/configs/input/PS3_Mode_3.json,sha256=2j_eS9PMDLLpWpC3rt8pSxJl20DLnffIwjGAmrFcnt4,1695
|
|
12
|
-
cfclient/configs/input/PS4_Mode_1.json,sha256=0j3dVPZu_cmk94Rwe0zxFEl1F09tkOXT2FCMOHw5CHs,1804
|
|
13
|
-
cfclient/configs/input/PS4_Mode_2.json,sha256=hdkD2EZoOpBSXNDF3eRDaCH3HWMXHxLB8v7gM2mJ2kw,1803
|
|
14
|
-
cfclient/configs/input/PS4_shoulder_btns_yaw.json,sha256=y25AaoAug_uYGhxu-szwGW811wLRLq_0mr1EPTnj7Qk,1887
|
|
15
|
-
cfclient/configs/input/xbox360_mode1.json,sha256=adsf2bE6S_O0rvsHui_ET-iQGeeLGyi4oxZq2leUYQM,1818
|
|
16
|
-
cfclient/configs/log/stabilizer.json,sha256=GLS6SFk7atFPm1wzDVVTe4cxu36WJyECfAZVA_V0QD4,387
|
|
17
|
-
cfclient/resources/map.html,sha256=pGwY2GW0F1rAtSImKbu-cFZyb6tJGwrDhkAgOZ98S68,360
|
|
18
|
-
cfclient/resources/map.js,sha256=0KyyJ-5W5qnrlEgTsp_oHk7b3w8k9qoyX4XjhThOkrU,839
|
|
19
|
-
cfclient/ui/__init__.py,sha256=8XHGfW8w3DnQGiL6R7GVob1KrKg4waKNzvSy79lRjMs,1342
|
|
20
|
-
cfclient/ui/main.py,sha256=5YPfGJ5pD3TVAocBnuQHXiwAhWosq2Rsv57Dut-eEyI,33022
|
|
21
|
-
cfclient/ui/main.ui,sha256=DSdyw8s7r-OPi6ZiBWDQNGKQV5y1FbejbCb-__F-sRU,12841
|
|
22
|
-
cfclient/ui/pluginhelper.py,sha256=DIFx5LyRLgAwKnmFqxebMlu1iyyukwLugTUPNHTmyi0,1398
|
|
23
|
-
cfclient/ui/tab.py,sha256=Pg1g2OxtBJppdP07GcSrulzHaP4D5oOSq5tSMEYG8Jc,3219
|
|
24
|
-
cfclient/ui/dialogs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
cfclient/ui/dialogs/about.py,sha256=ooIPA1O4-HOUsO-P9ph8GTwmxdmav3T2wO06fYmNea0,7670
|
|
26
|
-
cfclient/ui/dialogs/about.ui,sha256=AP2oT-9EMiRS7xKT1B7xjFYuTYTE-DnAl55Ze6mu3oE,5325
|
|
27
|
-
cfclient/ui/dialogs/bootloader.py,sha256=bd4gGAOMRXpZL-HfdBSZMqV_7kCx58WTTR31LWeZPiw,9882
|
|
28
|
-
cfclient/ui/dialogs/bootloader.ui,sha256=sLor5sCzoJzDj28BUs2KpxjtTAubQjJtdvoC2GXqdWo,6566
|
|
29
|
-
cfclient/ui/dialogs/cf1config.py,sha256=smSS8tCINCGXjE3qGhb2L57EDq-H-MmoU00nFfDv__g,9730
|
|
30
|
-
cfclient/ui/dialogs/cf1config.ui,sha256=epFWfQcuScb2QUAlKxRgodqHmjpyu9B-2aJJigHnsSM,7914
|
|
31
|
-
cfclient/ui/dialogs/cf2config.py,sha256=dfB3DfqiXlJNV_lpqYJKtArNuN4Pheuuf0qvJipmn4M,4201
|
|
32
|
-
cfclient/ui/dialogs/cf2config.ui,sha256=AsCYIZ5SEGBpAmUdnWXU4H7_wxuJDZS9w_LR1QBowdk,5870
|
|
33
|
-
cfclient/ui/dialogs/inputconfigdialogue.py,sha256=gJEQI5ZDPG2t1-nvyxRlKRAM50jTvhhpfnsQa9JB3w0,17654
|
|
34
|
-
cfclient/ui/dialogs/inputconfigdialogue.ui,sha256=4ADtk2OwkQ93SGmpqm99KxOeHOHhn-cD3cJu7_umfKc,23664
|
|
35
|
-
cfclient/ui/dialogs/logconfigdialogue.py,sha256=dzbewC1oiobF56G5joVaEdAbOa7O2sBCgCo_BYEkwkY,10773
|
|
36
|
-
cfclient/ui/dialogs/logconfigdialogue.ui,sha256=1qn3ASrHwMQjLu0GFJfV-SmMEUQf_6C5QGm21LNkoYc,7891
|
|
37
|
-
cfclient/ui/tabs/ConsoleTab.py,sha256=AfwYusg7tambTK0dyrZopu_AdIPxTFWHlfNkqQ-P13k,3330
|
|
38
|
-
cfclient/ui/tabs/ExampleTab.py,sha256=OcOj0ZroQDpO1cbSIH7bx__uHF3YAyGXdqOyVKTvIAY,3893
|
|
39
|
-
cfclient/ui/tabs/FlightTab.py,sha256=my4d8nkUI-gQnhhO7eYWJmlu6q3lF37R7ha2-pzdjr0,27575
|
|
40
|
-
cfclient/ui/tabs/GpsTab.py,sha256=P3eOJXpBheDy2uBE-ZKeHArBq_s98PX5HbVKVJP0xws,6229
|
|
41
|
-
cfclient/ui/tabs/LEDTab.py,sha256=DOKfKKuW8e73h8dp6ac-Z0mEgSO4Vj5cNyxIaXQQgTM,5920
|
|
42
|
-
cfclient/ui/tabs/LogBlockDebugTab.py,sha256=_9O9ohexqYlX8iDCM7plFCqIslaFzf4Y7bhE9qlI_KU,3932
|
|
43
|
-
cfclient/ui/tabs/LogBlockTab.py,sha256=PZ0fBjVfjOfLnw58pgSZHuDfRt87fqJmyqjRl2LUjzk,11901
|
|
44
|
-
cfclient/ui/tabs/LogTab.py,sha256=Hjhh08KAQsSuF6lZBQce7A-NIeXb-j_aBs2fT65UFKg,3242
|
|
45
|
-
cfclient/ui/tabs/ParamTab.py,sha256=9RpRwucgmN_01zNeF_2LV3pnpR9u-9VhbmvmDemkLz0,8975
|
|
46
|
-
cfclient/ui/tabs/PlotTab.py,sha256=tJjfbOfE9La6X8J-MqQCgqt1iFo7MumLdHWT-qs9g0Y,9089
|
|
47
|
-
cfclient/ui/tabs/__init__.py,sha256=PBPxaLEppGTJ67cIB3oQ-yRGw47K4wxcIL-xlsOil9M,1817
|
|
48
|
-
cfclient/ui/tabs/consoleTab.ui,sha256=stknLMzAaWPOzVMj-wPCkl4TccjTDSD0Tq2XflDqL2Y,1616
|
|
49
|
-
cfclient/ui/tabs/exampleTab.ui,sha256=kJqTMt8fw8-yhRYtrVL1E0U2rxOI4xL2CM0mThBKvqc,429
|
|
50
|
-
cfclient/ui/tabs/flightTab.ui,sha256=rbObHwaOYHhnR9VEkqZLcQMc641AY2YCe30v-98DA2Q,23212
|
|
51
|
-
cfclient/ui/tabs/gpsTab.ui,sha256=IMtQRwhL7e8A-sv-_0nVm8FVCvo-uujJ9qdgg1aKTs0,5263
|
|
52
|
-
cfclient/ui/tabs/ledTab.ui,sha256=gq4yaVrinoPJzC-USg_t4ccOiMMDVGkwkHXXM7GTcKw,8656
|
|
53
|
-
cfclient/ui/tabs/locopositioning_tab.py,sha256=xoPOLYdux9slyLJiJU0GNTWS1oRjE-HiBhCWHtARMfQ,24543
|
|
54
|
-
cfclient/ui/tabs/locopositioning_tab.ui,sha256=alPH65jEELl6y0YmCzcP3Z1ONDVlBNOepzp4nz4SMs0,10720
|
|
55
|
-
cfclient/ui/tabs/logBlockDebugTab.ui,sha256=pYQagmQPpSaZc235ECa9w-CM0snoA7FKY3WZh_W0u5s,1729
|
|
56
|
-
cfclient/ui/tabs/logBlockTab.ui,sha256=tE5DQ2dxskSrYWf3ha8Y86qeh89wcc9xOt1k8oDfKeA,602
|
|
57
|
-
cfclient/ui/tabs/logTab.ui,sha256=Cvasbqs7XumMY_U5FJ1Yd9ouE5cJEviS-1rKytwo5kw,1420
|
|
58
|
-
cfclient/ui/tabs/paramTab.ui,sha256=-XJ2DmQM-QVqkxaWh7CXGuZfKPBCCrHfafOu-NzXtDc,508
|
|
59
|
-
cfclient/ui/tabs/plotTab.ui,sha256=Jyn1V_vB1sKBGIpiRUlm4v6A1sqFDIt2w7ni0ixtdUc,688
|
|
60
|
-
cfclient/ui/toolboxes/ConsoleToolbox.py,sha256=Dl23pnLrlRPLdoUnyY2JQvBvccieeHxUpKWSyUpeWD4,2235
|
|
61
|
-
cfclient/ui/toolboxes/CrtpSharkToolbox.py,sha256=ifToIdmoAlZj8PSaoZ57eZ7OhmGJPYTG1a_5pWahBHI,4410
|
|
62
|
-
cfclient/ui/toolboxes/DebugDriverToolbox.py,sha256=DEiIcrAM0mzO1xzDNYHp7URPeZeRLxlNacKj_f2Yx_g,3608
|
|
63
|
-
cfclient/ui/toolboxes/__init__.py,sha256=3bHFvzM2BDeXRyuTQBYBaz_3FihHxXam0PgsTOxvz84,1546
|
|
64
|
-
cfclient/ui/toolboxes/consoleToolbox.ui,sha256=gi5McVJQXMXm-dhLGiWcxSsM2A2MQ4D6Mwf3svBasIo,1429
|
|
65
|
-
cfclient/ui/toolboxes/crtpSharkToolbox.ui,sha256=8wfoLVOI7qaHw6F8Mzq42eKv8-NiOQfYcA2yMEThuUk,2134
|
|
66
|
-
cfclient/ui/toolboxes/debugDriverToolbox.ui,sha256=XG_emaXbuLatxvTdfn9NpFVKputIH_Z3e38M6N_k3dg,2224
|
|
67
|
-
cfclient/ui/widgets/__init__.py,sha256=QDw5m94D3izw5CBg0xHo-GsyxJCoJBsKeKyBxMrH7E4,1261
|
|
68
|
-
cfclient/ui/widgets/ai.py,sha256=mu4zt57l_0mBFa2kiMB5IiQp0FKBpjJBn4N4ASZwnJg,8511
|
|
69
|
-
cfclient/ui/widgets/hexspinbox.py,sha256=AcvlL6fMG0oZQ58aawewq18RoHXEFwDO48xIAXwadvw,2254
|
|
70
|
-
cfclient/ui/widgets/plotter.ui,sha256=V6qm3uO9A-tWfVLu9tFv8kNwdoYKQQFrBhfI385yegI,9725
|
|
71
|
-
cfclient/ui/widgets/plotwidget.py,sha256=nx-isCBBTV7_Lyz4BgygOJ4tGUedVtMJhYSD3EkbtNY,10814
|
|
72
|
-
cfclient/utils/__init__.py,sha256=47bRoIBVYsDU26-VYi8EbImbWTxbzP-my6piaOVmOq8,1151
|
|
73
|
-
cfclient/utils/config.py,sha256=yAcCJtixnzAGScKFLh1Pb5hg524OkYePkdwlGiXfxlE,3418
|
|
74
|
-
cfclient/utils/config_manager.py,sha256=w3KZu-Q5by8c_gcEXI4WrBngjpV0Naakr-o_AQI3rw4,6825
|
|
75
|
-
cfclient/utils/logconfigreader.py,sha256=ptM_tXChK3ZCKxQitbrsmBaUagAoAI6sgg4gii10n_A,5226
|
|
76
|
-
cfclient/utils/logdatawriter.py,sha256=ejYb6WAdnR_z4CrdkI3MQgXgE7hXET5BWqdJ9DM1M-g,3907
|
|
77
|
-
cfclient/utils/periodictimer.py,sha256=_l26BtjebXJNnqqQ4L9RyC5-zvLfgSGhm_vH6tq3pjY,2594
|
|
78
|
-
cfclient/utils/singleton.py,sha256=yz-JMLr7F_rO6XpVn4VmGWt2c3vIascsZl0cUeoWqy0,1513
|
|
79
|
-
cfclient/utils/zmq_led_driver.py,sha256=eXadPB_jkCrhH35401NgNQYy8RkMSmcxeL1WwVyFMD0,3439
|
|
80
|
-
cfclient/utils/zmq_param.py,sha256=B7obGB16bp2q1klF3rsKtH4YJC7yJBB7gLgyzxssGpg,3779
|
|
81
|
-
cfclient/utils/input/__init__.py,sha256=bsgu22pnjQfIhVgGIAB0f0A4fX-zmt2tbFND_6cUYzg,19501
|
|
82
|
-
cfclient/utils/input/inputreaderinterface.py,sha256=S6enIyO5xnm59ThvarV5BhCkCcwtsLHMAqwFBN8ro1Q,9282
|
|
83
|
-
cfclient/utils/input/inputinterfaces/__init__.py,sha256=kqBz9KEj6dgK8Wncr1i2xS2FzUgcY0OS7UOf3kwLi5A,3447
|
|
84
|
-
cfclient/utils/input/inputinterfaces/leapmotion.py,sha256=-jPtWPCqqUisKfMLsgWgi11EszMPFbqu0tPXL0A5-aY,4780
|
|
85
|
-
cfclient/utils/input/inputinterfaces/wiimote.py,sha256=56w7AF0yil5FSP_XffcUhhFpus3D16w0XJWlU4OUb88,4393
|
|
86
|
-
cfclient/utils/input/inputinterfaces/zmqpull.py,sha256=mJ1dGDmXefalkabYt6u7kMILSGGSRlv3ZZ6rM1uOsKk,3791
|
|
87
|
-
cfclient/utils/input/inputreaders/__init__.py,sha256=iWy3HQCeSVCwL2-8YNPmKk4QkAWrjTeYP01E1YODloo,5099
|
|
88
|
-
cfclient/utils/input/inputreaders/linuxjsdev.py,sha256=V2JNfB-3bhgtjwzrROyvbx9ARZyeXicHT-Uqx7p0vfk,7425
|
|
89
|
-
cfclient/utils/input/inputreaders/pysdl2.py,sha256=5HD7qeoTkA73it05d7M0KDWZvlBXlS3UEZzJu_E8Mdk,6776
|
|
90
|
-
cfclient/utils/input/mux/__init__.py,sha256=TXP6Fqnj3eCZ5jrpzDhCjTbdnLDjuHn5cYcFAr3CvWM,2962
|
|
91
|
-
cfclient/utils/input/mux/nomux.py,sha256=HnQCoi-MqJvnOF3anyrlVMEWPJEBud_NYCoDFyJRC_o,1627
|
|
92
|
-
cfclient/utils/input/mux/takeovermux.py,sha256=7aftcx7-Kv2m2Cgs-Fuvs8i6NtvtPICSjUNsD04NGmA,1771
|
|
93
|
-
cfclient/utils/input/mux/takeoverselectivemux.py,sha256=nKX1mV331o37TrVT4FcsGdErFnzkyoxgSRj7rtBbZtI,2415
|
|
94
|
-
cfclient-2017.4.dist-info/DESCRIPTION.rst,sha256=OCTuuN6LcWulhHS3d5rfjdsQtW22n7HENFRh6jC6ego,10
|
|
95
|
-
cfclient-2017.4.dist-info/METADATA,sha256=QxWLxZW694k_tIA7F3NtUrkEEQS99JKaaoH8r33-nSQ,591
|
|
96
|
-
cfclient-2017.4.dist-info/RECORD,,
|
|
97
|
-
cfclient-2017.4.dist-info/WHEEL,sha256=rNo05PbNqwnXiIHFsYm0m22u4Zm6YJtugFG2THx4w3g,92
|
|
98
|
-
cfclient-2017.4.dist-info/entry_points.txt,sha256=uiLBVSPU1zwb6jGmfCQg2wO_NSKd-xblkrLUoZyFz0E,128
|
|
99
|
-
cfclient-2017.4.dist-info/metadata.json,sha256=ZtSx-qkrewcT0DHh3m4ZwIgYOQ6R1-Yd8IffExkuTUg,1060
|
|
100
|
-
cfclient-2017.4.dist-info/top_level.txt,sha256=dsv8BpTRO1hlMcx8ZUAQmJVvRB9j8VS8aJXovaxvjto,24
|
|
101
|
-
cfloader/__init__.py,sha256=udYdvy90HlidbwQfZu8NmdaNTQSozFD0RfYkYfSGMkY,6315
|
|
102
|
-
cfloader/__main__.py,sha256=Ct5fO0RV6foPBMmTHpEASS6mZ-4roJKoXWL8lhuuda0,65
|
|
103
|
-
cfzmq/__init__.py,sha256=xz-fz4v8yMJ-h26V9lrnr-v-DFH3V6meO7CveSb1lS8,13600
|
|
104
|
-
cfzmq/__main__.py,sha256=AoNwiCOwva0pyNZXMLRW5COKB6Fh3bPgQO-gE5hD_Cg,62
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"classifiers": ["License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5"], "extensions": {"python.commands": {"wrap_console": {"cfclient": "cfclient.gui:main", "cfheadless": "cfclient.headless:main", "cfloader": "cfloader:main", "cfzmq": "cfzmq:main"}}, "python.details": {"contacts": [{"email": "contact@bitcraze.se", "name": "Bitcraze team", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://www.bitcraze.io"}}, "python.exports": {"console_scripts": {"cfclient": "cfclient.gui:main", "cfheadless": "cfclient.headless:main", "cfloader": "cfloader:main", "cfzmq": "cfzmq:main"}}}, "extras": ["dev"], "generator": "bdist_wheel (0.29.0)", "keywords": ["quadcopter", "crazyflie"], "metadata_version": "2.0", "name": "cfclient", "run_requires": [{"requires": ["appdirs (==1.4.0)", "cflib (>=0.1.1)", "pyqtgraph (>=0.10)", "pyzmq"]}], "summary": "Bitcraze Cazyflie quadcopter client", "version": "2017.4"}
|
|
File without changes
|
|
File without changes
|