Skip to content

Commit 28a5db2

Browse files
authored
Merge pull request #7 from AGH-CEAI/humble
Sync release v0.1.1-humble from AGH-CEAI
2 parents 7a61290 + 2190af7 commit 28a5db2

File tree

5 files changed

+39
-15
lines changed

5 files changed

+39
-15
lines changed

CHANGELOG.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to the `robotiq_hande_driver` package will be documented in
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.1] - 2025-03-18
9+
10+
### Fixed
11+
12+
* [PR-6](https://github.com/AGH-CEAI/robotiq_hande_description/pull/6) - Added prefix to inertial macro name. Added descriptive names for params.
13+
14+
815
## [0.1.0] - 2025-03-13
916

1017
### Added
@@ -15,11 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1522

1623
* [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.
1724

18-
### Deprecated
19-
20-
### Removed
21-
2225
### Fixed
23-
* [PR-2](https://github.com/AGH-CEAI/robotiq_hande_description/pull/2) - Removed unnecessary quotation marks from parameter values.
2426

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

CITATION.cff

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: Aleksandrowicz
5+
given-names: Maciej
6+
orcid: https://orcid.org/0000-0003-3388-5653
7+
- family-names: Klimek
8+
given-names: Krzysztof
9+
orcid: https://orcid.org/0009-0004-6749-1833
10+
- family-names: Płachno
11+
given-names: Jakub
12+
title: "Robotiq Hand-E ROS 2 Description Package"
13+
version: 0.1.1
14+
identifiers:
15+
date-released: 2025-03-18

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.1.0</version>
5+
<version>0.1.1</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: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
<?xml version="1.0"?>
22
<robot xmlns:xacro="http://ros.org/wiki/xacro">
3-
<xacro:macro name="cylinder_inertial" params="r h m *origin">
3+
<xacro:macro name="__robotiq_hande_cylinder_inertial" params="radius height mass *origin">
44
<inertial>
5-
<mass value="${m}"/>
5+
<mass value="${mass}"/>
66
<xacro:insert_block name="origin"/>
7-
<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)}"/>
7+
<inertia
8+
ixx="${0.0833333 * mass * (3 * (radius * radius) + height * height)}"
9+
ixy="0.0"
10+
ixz="0.0"
11+
iyy="${0.0833333 * mass * (3 * (radius * radius) + height * height)}"
12+
iyz="0.0"
13+
izz="${0.5 * mass * (radius * radius)}"
14+
/>
815
</inertial>
916
</xacro:macro>
1017
</robot>

urdf/robotiq_hande_gripper.xacro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<xacro:arg name="hande_radius" default="0.0375"/>
3737

3838
<joint name="${prefix}robotiq_hande_coupler_joint" type="fixed">
39-
<origin xyz="0 0 0" rpy="0 0 ${-pi/2.0}"/>
39+
<origin xyz="0 0 0" rpy="0 0 0"/>
4040
<parent link="${parent}"/>
4141
<child link="${prefix}robotiq_hande_coupler"/>
4242
</joint>
@@ -55,9 +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:__robotiq_hande_cylinder_inertial radius="$(arg hande_radius)" height="$(arg coupler_shell_height)" mass="${coupler_mass}">
5959
<origin xyz="0 0 ${$(arg coupler_shell_height) / 2 - $(arg coupler_parent_cutoff)}" rpy="0 0 0"/>
60-
</xacro:cylinder_inertial>
60+
</xacro:__robotiq_hande_cylinder_inertial>
6161
</link>
6262

6363
<joint name="${prefix}robotiq_hande_base_joint" type="fixed">
@@ -81,9 +81,9 @@
8181
</geometry>
8282
</collision>
8383

84-
<xacro:cylinder_inertial r="$(arg hande_radius)" h="$(arg hande_height)" m="0.86387">
84+
<xacro:__robotiq_hande_cylinder_inertial radius="$(arg hande_radius)" height="$(arg hande_height)" mass="0.86387">
8585
<origin xyz="0 0 ${$(arg hande_height) / 2}" rpy="0 0 0"/>
86-
</xacro:cylinder_inertial>
86+
</xacro:__robotiq_hande_cylinder_inertial>
8787
</link>
8888

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

0 commit comments

Comments
 (0)