Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Shuhang Huang
turtlebot3
Commits
d08bef91
Commit
d08bef91
authored
5 years ago
by
Ryan Shim
Browse files
Options
Download
Patches
Plain Diff
import module reordered
parent
33b59cda
ros2-devel
dashing-devel
eloquent-devel
feature-burger-camera
feature-camera
feature-humble
feature-nav2-update
feature-raspicam
foxy-devel
galactic-devel
galactic-devel-hotfix
hotfix-humble
hotfix-humble-example
humble-devel
ros2
2.1.5
2.1.3
2.1.2
2.1.1
2.1.0
No related merge requests found
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
turtlebot3_example/turtlebot3_example/turtlebot3_obstacle_detection/main.py
+1
-0
.../turtlebot3_example/turtlebot3_obstacle_detection/main.py
turtlebot3_example/turtlebot3_example/turtlebot3_obstacle_detection/turtlebot3_obstacle_detection.py
+2
-1
...ebot3_obstacle_detection/turtlebot3_obstacle_detection.py
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_client/main.py
+1
-0
...ample/turtlebot3_example/turtlebot3_patrol_client/main.py
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_client/turtlebot3_patrol_client.py
+5
-3
...mple/turtlebot3_patrol_client/turtlebot3_patrol_client.py
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_server/main.py
+1
-0
...ample/turtlebot3_example/turtlebot3_patrol_server/main.py
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_server/turtlebot3_patrol_server.py
+4
-2
...mple/turtlebot3_patrol_server/turtlebot3_patrol_server.py
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/main.py
+1
-0
...le/turtlebot3_example/turtlebot3_position_control/main.py
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/turtlebot3_path.py
+1
-0
...t3_example/turtlebot3_position_control/turtlebot3_path.py
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/turtlebot3_position_control.py
+5
-3
...urtlebot3_position_control/turtlebot3_position_control.py
with
21 additions
and
9 deletions
+21
-9
turtlebot3_example/turtlebot3_example/turtlebot3_obstacle_detection/main.py
+
1
−
0
View file @
d08bef91
...
...
@@ -17,6 +17,7 @@
# Authors: Ryan Shim, Gilbert
import
rclpy
from
turtlebot3_example.turtlebot3_obstacle_detection.turtlebot3_obstacle_detection
\
import
Turtlebot3ObstacleDetection
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_obstacle_detection/turtlebot3_obstacle_detection.py
+
2
−
1
View file @
d08bef91
...
...
@@ -16,8 +16,9 @@
#
# Authors: Ryan Shim, Gilbert
from
geometry_msgs.msg
import
Twist
import
numpy
from
geometry_msgs.msg
import
Twist
from
rclpy.node
import
Node
from
rclpy.qos
import
QoSProfile
from
rclpy.qos
import
qos_profile_sensor_data
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_client/main.py
+
1
−
0
View file @
d08bef91
...
...
@@ -17,6 +17,7 @@
# Authors: Ryan Shim, Gilbert
import
rclpy
from
turtlebot3_example.turtlebot3_patrol_client.turtlebot3_patrol_client
\
import
Turtlebot3PatrolClient
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_client/turtlebot3_patrol_client.py
+
5
−
3
View file @
d08bef91
...
...
@@ -16,12 +16,14 @@
#
# Authors: Ryan Shim, Gilbert
import
rclpy
from
rclpy.action
import
ActionClient
from
rclpy.node
import
Node
import
sys
import
termios
from
action_msgs.msg
import
GoalStatus
import
rclpy
from
rclpy.action
import
ActionClient
from
rclpy.node
import
Node
from
turtlebot3_msgs.action
import
Patrol
terminal_msg
=
"""
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_server/main.py
+
1
−
0
View file @
d08bef91
...
...
@@ -17,6 +17,7 @@
# Authors: Ryan Shim, Gilbert
import
rclpy
from
turtlebot3_example.turtlebot3_patrol_server.turtlebot3_patrol_server
\
import
Turtlebot3PatrolServer
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_patrol_server/turtlebot3_patrol_server.py
+
4
−
2
View file @
d08bef91
...
...
@@ -17,6 +17,9 @@
# Authors: Ryan Shim, Gilbert
import
math
import
time
from
geometry_msgs.msg
import
Twist
from
rclpy.action
import
ActionServer
from
rclpy.action
import
CancelResponse
from
rclpy.action
import
GoalResponse
...
...
@@ -24,10 +27,9 @@ from rclpy.callback_groups import ReentrantCallbackGroup
from
rclpy.duration
import
Duration
from
rclpy.node
import
Node
from
rclpy.qos
import
QoSProfile
import
time
from
turtlebot3_example.turtlebot3_patrol_server.turtlebot3_path
\
import
Turtlebot3Path
from
geometry_msgs.msg
import
Twist
from
turtlebot3_msgs.action
import
Patrol
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/main.py
+
1
−
0
View file @
d08bef91
...
...
@@ -17,6 +17,7 @@
# Authors: Ryan Shim, Gilbert
import
rclpy
from
turtlebot3_example.turtlebot3_position_control.turtlebot3_position_control
\
import
Turtlebot3PositionControl
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/turtlebot3_path.py
+
1
−
0
View file @
d08bef91
...
...
@@ -17,6 +17,7 @@
# Authors: Ryan Shim, Gilbert
import
math
from
geometry_msgs.msg
import
Twist
...
...
This diff is collapsed.
Click to expand it.
turtlebot3_example/turtlebot3_example/turtlebot3_position_control/turtlebot3_position_control.py
+
5
−
3
View file @
d08bef91
...
...
@@ -18,14 +18,16 @@
import
math
import
numpy
from
rclpy.node
import
Node
from
rclpy.qos
import
QoSProfile
import
sys
import
termios
from
turtlebot3_example.turtlebot3_position_control.turtlebot3_path
import
Turtlebot3Path
from
geometry_msgs.msg
import
Twist
from
rclpy.node
import
Node
from
rclpy.qos
import
QoSProfile
from
nav_msgs.msg
import
Odometry
from
turtlebot3_example.turtlebot3_position_control.turtlebot3_path
import
Turtlebot3Path
terminal_msg
=
"""
Turtlebot3 Position Control
------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets