Skip to content

Commit 0206a1f

Browse files
authored
Merge pull request #5 from AGH-CEAI/humble-release
Pull v0.1.0-humble release to devel
2 parents afbfc29 + 5b62f08 commit 0206a1f

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010
### Added
11+
### Changed
12+
### Deprecated
13+
### Removed
14+
### Fixed
15+
### Security
16+
17+
## [0.1.0] - 2025-03-13
18+
19+
### Added
20+
1121
* [PR-1](https://github.com/AGH-CEAI/robotiq_hande_description/pull/1) - Configuration parameters for ModbusRTU.
1222

1323
### Changed
14-
* [PR-3](https://github.com/AGH-CEAI/robotiq_hande_description/pull/3) - Changed the coupler model and simplified URDF files by editing the models.
15-
16-
### Deprecated
1724

18-
### Removed
25+
* [PR-3](https://github.com/AGH-CEAI/robotiq_hande_description/pull/3) & [PR-4](https://github.com/AGH-CEAI/robotiq_hande_description/pull/3) - Changed the coupler model and simplified URDF files by editing the models.
1926

2027
### Fixed
21-
* [PR-2](https://github.com/AGH-CEAI/robotiq_hande_description/pull/2) - Removed unnecessary quotation marks from parameter values.
2228

23-
### Security
29+
* [PR-2](https://github.com/AGH-CEAI/robotiq_hande_description/pull/2) - Removed unnecessary quotation marks from parameter values.

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>robotiq_hande_description</name>
5-
<version>0.0.1</version>
5+
<version>0.1.0</version>
66
<description>Contains meshes and URDF description of the Robotiq Hand-E gripper.</description>
77
<maintainer email="mac.aleksandrowicz@gmail.com">Maciej Aleksandrowicz</maintainer>
88
<license>Apache-2.0</license>

urdf/cylinder_inertial.xacro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0"?>
22
<robot xmlns:xacro="http://ros.org/wiki/xacro">
3-
<xacro:macro name="cylinder_inertial" params="r h m">
3+
<xacro:macro name="cylinder_inertial" params="r h m *origin">
44
<inertial>
55
<mass value="${m}"/>
6+
<xacro:insert_block name="origin"/>
67
<inertia ixx="${0.0833333 * m * (3 * (r * r) + h * h)}" ixy="0.0" ixz="0.0" iyy="${0.0833333 * m * (3 * (r * r) + h * h)}" iyz="0.0" izz="${0.5 * m * (r * r)}"/>
78
</inertial>
89
</xacro:macro>

urdf/robotiq_hande_gripper.xacro

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
</geometry>
5656
</collision>
5757

58-
<xacro:cylinder_inertial r="$(arg hande_radius)" h="$(arg coupler_shell_height)" m="${coupler_mass}"/>
58+
<xacro:cylinder_inertial r="$(arg hande_radius)" h="$(arg coupler_shell_height)" m="${coupler_mass}">
59+
<origin xyz="0 0 ${$(arg coupler_shell_height) / 2 - $(arg coupler_parent_cutoff)}" rpy="0 0 0"/>
60+
</xacro:cylinder_inertial>
5961
</link>
6062

6163
<joint name="${prefix}robotiq_hande_base_joint" type="fixed">
@@ -79,7 +81,9 @@
7981
</geometry>
8082
</collision>
8183

82-
<xacro:cylinder_inertial r="$(arg hande_radius)" h="$(arg hande_height)" m="0.86387"/>
84+
<xacro:cylinder_inertial r="$(arg hande_radius)" h="$(arg hande_height)" m="0.86387">
85+
<origin xyz="0 0 ${$(arg hande_height) / 2}" rpy="0 0 0"/>
86+
</xacro:cylinder_inertial>
8387
</link>
8488

8589
<joint name="${prefix}robotiq_hande_left_finger_joint" type="prismatic">

0 commit comments

Comments
 (0)