You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to the `robotiq_hande_driver` package will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
## [0.1.0] - 2025-03-13
9
+
10
+
### Added
11
+
12
+
*[PR-1](https://github.com/AGH-CEAI/robotiq_hande_description/pull/1) - Configuration parameters for ModbusRTU.
13
+
14
+
### Changed
15
+
16
+
*[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.
17
+
18
+
### Deprecated
19
+
20
+
### Removed
21
+
22
+
### Fixed
23
+
*[PR-2](https://github.com/AGH-CEAI/robotiq_hande_description/pull/2) - Removed unnecessary quotation marks from parameter values.
This package contains meshes and URDF description of [Robotiq Hand-E gripper](https://robotiq.com/products/hand-e-adaptive-robot-gripper). It was originally developed for integration with Universal Robots e-series (UR5e), however it is be possible to change the coupler model to fit your needs. **PRs are welcome!**
2
8
3
-
This package contains meshes and URDF description of [Robotiq Hand-E gripper](https://robotiq.com/products/hand-e-adaptive-robot-gripper) dedicated for Universal Robots e-series.
4
9
5
10
- The gripper comes with coupler model (but without flange).
6
11
- This repository comes with CAD models imported from STEP files to FreeCAD format (FCStd).
12
+
- These CAD models are taken from the official [Robotiq Support page](https://robotiq.com/support).
7
13
- Package has been developed and tested in ROS 2 Humble.
14
+
- The definitions for the `ros2_control` framework are available in the [robotiq_hande_gripper.ros2_control.xacro](./urdf/robotiq_hande_gripper.ros2_control.xacro) file.
15
+
16
+
17
+
> [!IMPORTANT]
18
+
> The fingers' joints can be set from **0 to 25 mm** (which corresponds to the maximal grasp with from **0 to 50 mm**).
8
19
9
20

10
21
22
+
11
23
## Usage
12
24
13
-
In your URDF (Xacro) file include the Hand-E definition. Provide a parent link (for instance `tool0`) as the parameter:
25
+
In your URDF (Xacro) file include the Hand-E definition. Provide a unique name and the parent link (for instance `tool0`) as the parameters:
An example usage can be find in the [urdf/robotiq_hande_gripper.xacro](./urdf/robotiq_hande_gripper.xacro) file.
33
+
For estabilishg a connection with [robotiq_hande_driver](https://github.com/AGH-CEAI/robotiq_hande_driver) there is also need to provide more parameters:
34
+
```xml
35
+
<xacro:robotiq_hande_gripper
36
+
name="robotiq_hande_gripper"
37
+
prefix=""
38
+
parent="tool0"
39
+
grip_pos_min="0.0"
40
+
grip_pos_max="0.025"
41
+
tty="/tmp/ttyUR"
42
+
baudrate="115200"
43
+
parity="N"
44
+
data_bits="8"
45
+
stop_bit="1"
46
+
slave_id="9"
47
+
use_fake_hardware="false"
48
+
/>
49
+
```
50
+
51
+
> [!NOTE]
52
+
> The TF frame of the end tip of the gripper is called `${prefix}hande_end`, where `${prefix}` evaluates as the `prefix` macro parameter.
53
+
54
+
### Examples
55
+
**An example usage can be find** in the [urdf/hande_preview.urdf.xacro](./urdf/robotiq_hande_gripper.urdf.xacro) file. Furthermore, an integration with whole ROS 2 project example can be find in the [AGH-CEAI/aegis_ros](https://github.com/AGH-CEAI/aegis_ros) repository.
0 commit comments