Skip to content

Commit a35a56c

Browse files
authored
Merge pull request #246 from ROBOTIS-GIT/feature-tb3-manipulation-error-fix
Resolved an issue where tb3_manipulation simulation models were not loading
2 parents 17871cd + 59bb3a2 commit a35a56c

File tree

22 files changed

+30
-12
lines changed

22 files changed

+30
-12
lines changed

turtlebot3_fake_node/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_fake
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.8 (2025-07-10)
6+
------------------
7+
* None
8+
59
2.3.6 (2025-06-19)
610
------------------
711
* None

turtlebot3_fake_node/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3_fake_node</name>
5-
<version>2.3.6</version>
5+
<version>2.3.8</version>
66
<description>
77
Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
88
You can do simple tests using this package on rviz without real robots.

turtlebot3_gazebo/CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog for package turtlebot3_gazebo
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.8 (2025-07-10)
6+
------------------
7+
* None
8+
59
2.3.6 (2025-06-19)
610
------------------
711
* None

turtlebot3_gazebo/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>turtlebot3_gazebo</name>
5-
<version>2.3.6</version>
5+
<version>2.3.8</version>
66
<description>
77
Gazebo simulation package for the TurtleBot3
88
</description>

turtlebot3_manipulation_gazebo/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package turtlebot3_manipulation_gazebo
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.3.8 (2025-07-10)
6+
------------------
7+
* Fixed the issue where the TurtleBot3 Manipulation Gazebo simulation was not working properly
8+
* Contributors: Hyungyu Kim
9+
510
2.3.6 (2025-06-19)
611
------------------
712
* None

turtlebot3_manipulation_gazebo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ find_package(ament_cmake REQUIRED)
1313
# Install
1414
################################################################################
1515
install(
16-
DIRECTORY config gazebo launch ros2_control rviz urdf worlds models
16+
DIRECTORY config gazebo launch ros2_control rviz urdf worlds models meshes
1717
DESTINATION share/${PROJECT_NAME}
1818
)
1919

turtlebot3_manipulation_gazebo/launch/gazebo.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ def generate_launch_description():
143143
'world': world,
144144
}.items(),
145145
),
146-
147146
Node(
148147
package='gazebo_ros',
149148
executable='spawn_entity.py',

turtlebot3_manipulation_gazebo/launch/turtlebot3_home_service_challenge.launch.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ def generate_launch_description():
9797
arguments=[
9898
'-topic', 'robot_description',
9999
'-entity', 'turtlebot3_manipulation_system',
100-
'-x', '0',
101-
'-y', '0',
102-
'-z', '0',
103-
'-R', '0',
104-
'-P', '0',
105-
'-Y', '0'
100+
'-x', '0.0',
101+
'-y', '0.0',
102+
'-z', '0.0',
103+
'-R', '0.0',
104+
'-P', '0.0',
105+
'-Y', '0.0'
106106
],
107107
output='screen',
108108
),
131 KB
Binary file not shown.
133 KB
Binary file not shown.

0 commit comments

Comments
 (0)