mirror of
https://github.com/ROBOTIS-GIT/turtlebot3_simulations.git
synced 2025-09-15 13:08:35 +08:00
Merge pull request #246 from ROBOTIS-GIT/feature-tb3-manipulation-error-fix
Some checks failed
CI / ROS_CI (ubuntu:jammy, humble, 2) (push) Has been cancelled
Some checks failed
CI / ROS_CI (ubuntu:jammy, humble, 2) (push) Has been cancelled
Resolved an issue where tb3_manipulation simulation models were not loading
This commit is contained in:
commit
a35a56c8b0
@ -2,6 +2,10 @@
|
|||||||
Changelog for package turtlebot3_fake
|
Changelog for package turtlebot3_fake
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
2.3.8 (2025-07-10)
|
||||||
|
------------------
|
||||||
|
* None
|
||||||
|
|
||||||
2.3.6 (2025-06-19)
|
2.3.6 (2025-06-19)
|
||||||
------------------
|
------------------
|
||||||
* None
|
* None
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>turtlebot3_fake_node</name>
|
<name>turtlebot3_fake_node</name>
|
||||||
<version>2.3.6</version>
|
<version>2.3.8</version>
|
||||||
<description>
|
<description>
|
||||||
Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
|
Package for TurtleBot3 fake node. With this package, simple tests can be done without a robot.
|
||||||
You can do simple tests using this package on rviz without real robots.
|
You can do simple tests using this package on rviz without real robots.
|
||||||
|
|||||||
@ -2,6 +2,10 @@
|
|||||||
Changelog for package turtlebot3_gazebo
|
Changelog for package turtlebot3_gazebo
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
2.3.8 (2025-07-10)
|
||||||
|
------------------
|
||||||
|
* None
|
||||||
|
|
||||||
2.3.6 (2025-06-19)
|
2.3.6 (2025-06-19)
|
||||||
------------------
|
------------------
|
||||||
* None
|
* None
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>turtlebot3_gazebo</name>
|
<name>turtlebot3_gazebo</name>
|
||||||
<version>2.3.6</version>
|
<version>2.3.8</version>
|
||||||
<description>
|
<description>
|
||||||
Gazebo simulation package for the TurtleBot3
|
Gazebo simulation package for the TurtleBot3
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
@ -2,6 +2,11 @@
|
|||||||
Changelog for package turtlebot3_manipulation_gazebo
|
Changelog for package turtlebot3_manipulation_gazebo
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
2.3.8 (2025-07-10)
|
||||||
|
------------------
|
||||||
|
* Fixed the issue where the TurtleBot3 Manipulation Gazebo simulation was not working properly
|
||||||
|
* Contributors: Hyungyu Kim
|
||||||
|
|
||||||
2.3.6 (2025-06-19)
|
2.3.6 (2025-06-19)
|
||||||
------------------
|
------------------
|
||||||
* None
|
* None
|
||||||
|
|||||||
@ -13,7 +13,7 @@ find_package(ament_cmake REQUIRED)
|
|||||||
# Install
|
# Install
|
||||||
################################################################################
|
################################################################################
|
||||||
install(
|
install(
|
||||||
DIRECTORY config gazebo launch ros2_control rviz urdf worlds models
|
DIRECTORY config gazebo launch ros2_control rviz urdf worlds models meshes
|
||||||
DESTINATION share/${PROJECT_NAME}
|
DESTINATION share/${PROJECT_NAME}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -143,7 +143,6 @@ def generate_launch_description():
|
|||||||
'world': world,
|
'world': world,
|
||||||
}.items(),
|
}.items(),
|
||||||
),
|
),
|
||||||
|
|
||||||
Node(
|
Node(
|
||||||
package='gazebo_ros',
|
package='gazebo_ros',
|
||||||
executable='spawn_entity.py',
|
executable='spawn_entity.py',
|
||||||
|
|||||||
@ -97,12 +97,12 @@ def generate_launch_description():
|
|||||||
arguments=[
|
arguments=[
|
||||||
'-topic', 'robot_description',
|
'-topic', 'robot_description',
|
||||||
'-entity', 'turtlebot3_manipulation_system',
|
'-entity', 'turtlebot3_manipulation_system',
|
||||||
'-x', '0',
|
'-x', '0.0',
|
||||||
'-y', '0',
|
'-y', '0.0',
|
||||||
'-z', '0',
|
'-z', '0.0',
|
||||||
'-R', '0',
|
'-R', '0.0',
|
||||||
'-P', '0',
|
'-P', '0.0',
|
||||||
'-Y', '0'
|
'-Y', '0.0'
|
||||||
],
|
],
|
||||||
output='screen',
|
output='screen',
|
||||||
),
|
),
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -2,7 +2,7 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>turtlebot3_manipulation_gazebo</name>
|
<name>turtlebot3_manipulation_gazebo</name>
|
||||||
<version>2.3.6</version>
|
<version>2.3.8</version>
|
||||||
<description>
|
<description>
|
||||||
Gazebo simulation package for the TurtleBot3 manipulation
|
Gazebo simulation package for the TurtleBot3 manipulation
|
||||||
</description>
|
</description>
|
||||||
@ -23,5 +23,6 @@
|
|||||||
<exec_depend>xacro</exec_depend>
|
<exec_depend>xacro</exec_depend>
|
||||||
<export>
|
<export>
|
||||||
<build_type>ament_cmake</build_type>
|
<build_type>ament_cmake</build_type>
|
||||||
|
<gazebo_ros gazebo_model_path="${prefix}/..:${prefix}/models"/>
|
||||||
</export>
|
</export>
|
||||||
</package>
|
</package>
|
||||||
|
|||||||
@ -2,6 +2,11 @@
|
|||||||
Changelog for package turtlebot3_simulations
|
Changelog for package turtlebot3_simulations
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
2.3.8 (2025-07-10)
|
||||||
|
------------------
|
||||||
|
* Fixed the issue where the TurtleBot3 Manipulation Gazebo simulation was not working properly
|
||||||
|
* Contributors: Hyungyu Kim
|
||||||
|
|
||||||
2.3.6 (2025-06-19)
|
2.3.6 (2025-06-19)
|
||||||
------------------
|
------------------
|
||||||
* Included the TurtleBot3 Manipulation Gazebo simulation package in the metapackage's package.xml and updated the CI configuration accordingly
|
* Included the TurtleBot3 Manipulation Gazebo simulation package in the metapackage's package.xml and updated the CI configuration accordingly
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||||
<package format="3">
|
<package format="3">
|
||||||
<name>turtlebot3_simulations</name>
|
<name>turtlebot3_simulations</name>
|
||||||
<version>2.3.6</version>
|
<version>2.3.8</version>
|
||||||
<description>
|
<description>
|
||||||
ROS 2 packages for TurtleBot3 simulations
|
ROS 2 packages for TurtleBot3 simulations
|
||||||
</description>
|
</description>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user