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
+
## [Unreleased]
9
+
10
+
### Added
11
+
### Changed
12
+
### Deprecated
13
+
### Removed
14
+
### Fixed
15
+
### Security
16
+
17
+
## [0.1.0] - 2025-03-13
18
+
19
+
### Added
20
+
21
+
*[PR-1](https://github.com/AGH-CEAI/robotiq_hande_description/pull/1) - Configuration parameters for ModbusRTU.
22
+
23
+
### Changed
24
+
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.
26
+
27
+
### Fixed
28
+
29
+
*[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) dedicated for Universal Robots e-series.
7
+
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!**
8
+
8
9
9
10
- The gripper comes with coupler model (but without flange).
10
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).
11
13
- Package has been developed and tested in ROS 2 Humble.
12
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.
13
15
@@ -17,22 +19,40 @@ This package contains meshes and URDF description of [Robotiq Hand-E gripper](ht
17
19
18
20

19
21
20
-
*(Errata: The minus width range in the animation above is outdated)*
21
22
22
23
## Usage
23
24
24
-
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/hande_preview.urdf.xacro](./urdf/robotiq_hande_gripper.urdf.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
+
```
33
50
34
51
> [!NOTE]
35
-
> The TF frame of the end tip of the gripper is called `${prefix}hande_end`, where `${prefix}` evaluates as the second macro parameter.
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