Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qubo_gui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robotics at Maryland
qubo_gui
Compare revisions
809cfb405e7e30b1742c158d3b362314210a69a0 to 4cf749d10673227c79246bae21c56d5c806a62b5
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
robotics-at-maryland/qubo_gui
Select target project
No results found
4cf749d10673227c79246bae21c56d5c806a62b5
Select Git revision
Branches
main
teleop
thruster-text
Swap
Target
robotics-at-maryland/qubo_gui
Select target project
robotics-at-maryland/qubo_gui
1 result
809cfb405e7e30b1742c158d3b362314210a69a0
Select Git revision
Branches
main
teleop
thruster-text
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Remove debug print
· 24c155a9
Jeffrey Fisher
authored
5 months ago
24c155a9
Install teleop rqt plugin
· 4cf749d1
Jeffrey Fisher
authored
5 months ago
4cf749d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugin.xml
+4
-4
4 additions, 4 deletions
plugin.xml
qubo_gui/teleop.py
+0
-1
0 additions, 1 deletion
qubo_gui/teleop.py
with
4 additions
and
5 deletions
plugin.xml
View file @
4cf749d1
...
...
@@ -27,15 +27,15 @@
</qtgui>
</class>
<class
name=
"
Example
Plugin"
type=
"qubo_gui.
plugin2.
Plugin
2
"
base_class_type=
"rqt_gui_py::Plugin"
>
<class
name=
"
Teleop
Plugin"
type=
"qubo_gui.
teleop.Teleop
Plugin"
base_class_type=
"rqt_gui_py::Plugin"
>
<description>
An example Python GUI plugin to create a great user interface
.
Operate Qubo manually and autonomously
.
</description>
<qtgui>
<group>
<label>
Visualization
</label>
<label>
Qubo Control
</label>
</group>
<label>
another plugin of mine
</label>
<label>
Qubo Teleop
</label>
<icon
type=
"theme"
>
system-help
</icon>
<statustip>
Great user interface to provide real value.
</statustip>
</qtgui>
...
...
This diff is collapsed.
Click to expand it.
qubo_gui/teleop.py
View file @
4cf749d1
...
...
@@ -31,7 +31,6 @@ class TeleopPlugin(Plugin):
@QtCore.Slot
()
def
_monitor_joy
(
self
):
print
(
self
.
_joy
.
LeftJoystickX
)
self
.
label_joy_x
.
setText
(
f
"
X:
{
self
.
_joy
.
LeftJoystickX
}
"
)
class
XboxController
(
object
):
...
...
This diff is collapsed.
Click to expand it.