Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LEAP Hand v1 description #96

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.

### Added

- Description: LEAP Hand v1
- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka)
- Description: Stretch 3 (MJCF) (thanks to @kevinzakka)

### Changed

- Update repository for ``gen3_mj_description`` to ``mujoco_menagerie``
Expand All @@ -14,8 +18,6 @@ All notable changes to this project will be documented in this file.

### Added

- Description: Stretch 3 (MJCF) (thanks to @kevinzakka)
- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka)
- Description: KUKA iiwa 7 (URDF)
- Description: Unitree G1 (MJCF) (thanks to @kevinzakka)
- Description: Unitree G1 (URDF) (thanks to @lvjonok)
Expand Down
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ The DOF column denotes the number of actuated degrees of freedom.
| `edo_description` | e.DO | Comau | 6 | URDF |
| `fanuc_m710ic_description` | M-710iC | Fanuc | 6 | URDF |
| `fr3_mj_description` | FR3 | Franka Robotics | 7 | MJCF |
| `gen2_description` | Gen2 (Jaco) | Kinova | 6 | URDF |
| `gen3_description` | Gen3 (Jaco) | Kinova | 6 | URDF |
| `gen2_description` | Gen2 | Kinova | 6 | URDF |
| `gen3_description` | Gen3 | Kinova | 6 | URDF |
| `gen3_mj_description` | Gen3 | Kinova | 7 | MJCF |
| `iiwa14_description` | iiwa 14 | KUKA | 7 | URDF |
| `iiwa14_mj_description` | iiwa 14 | KUKA | 7 | MJCF |
Expand Down Expand Up @@ -195,15 +195,16 @@ The DOF column denotes the number of actuated degrees of freedom.

### End effectors

| Name | Robot | Maker | DOF | Format |
|-------------------------------|-----------------------|--------------------------|-----|------------|
| `allegro_hand_description` | Allegro Hand | Wonik Robotics | 16 | URDF |
| `allegro_hand_mj_description` | Allegro Hand | Wonik Robotics | 16 | MJCF |
| `barrett_hand_description` | BarrettHand | Barrett Technology | 8 | URDF |
| `robotiq_2f85_description` | Robotiq 2F-85 | Robotiq | 1 | URDF |
| `robotiq_2f85_mj_description` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
| `shadow_dexee_mj_description` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
| `shadow_hand_mj_description` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |
| Name | Robot | Maker | DOF | Format |
|-------------------------------|-----------------------|----------------------------|-----|------------|
| `allegro_hand_description` | Allegro Hand | Wonik Robotics | 16 | URDF |
| `allegro_hand_mj_description` | Allegro Hand | Wonik Robotics | 16 | MJCF |
| `barrett_hand_description` | BarrettHand | Barrett Technology | 8 | URDF |
| `leap_hand_v1` | LEAP Hand v1 | Carnegie Mellon University | 16 | URDF |
| `robotiq_2f85_description` | Robotiq 2F-85 | Robotiq | 1 | URDF |
| `robotiq_2f85_mj_description` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
| `shadow_dexee_mj_description` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
| `shadow_hand_mj_description` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |

### Humanoids

Expand Down
1 change: 1 addition & 0 deletions robot_descriptions/_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def has_urdf(self) -> bool:
"jvrc_description": Description(Format.URDF),
"jvrc_mj_description": Description(Format.MJCF),
"laikago_description": Description(Format.URDF),
"leap_hand_v1": Description(Format.URDF),
"mini_cheetah_description": Description(Format.URDF),
"minitaur_description": Description(Format.URDF),
"nextage_description": Description(Format.URDF),
Expand Down
5 changes: 5 additions & 0 deletions robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ class Repository:
commit="0f0ce7daefdd66c54e0909a6bf2c22154844f5f3",
cache_path="jvrc_mj_description",
),
"LEAP_Hand_Sim": Repository(
url="https://github.com/leap-hand/LEAP_Hand_Sim.git",
commit="150bc3d4b61fd6619193ba5a8ef209f3609ced89",
cache_path="LEAP_Hand_Sim",
),
"kinova_mj_description": Repository(
url="https://github.com/mathieu-celerier/kinova_mj_description.git",
commit="cee556b0a438e6904634a90826d4e8d2e005cd1f",
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/gen2_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""Kinova Jaco Gen2 description."""
"""Kinova Gen2 description."""

from os import getenv as _getenv
from os import path as _path
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/gen3_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""Kinova Jaco Gen3 description."""
"""Kinova Gen3 description."""

from os import getenv as _getenv
from os import path as _path
Expand Down
21 changes: 21 additions & 0 deletions robot_descriptions/leap_hand_v1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Inria

"""LEAP hand v1 description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"LEAP_Hand_Sim",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "assets", "leap_hand")

URDF_PATH: str = _path.join(PACKAGE_PATH, "robot.urdf")
Loading