Skip to content

Commit b7b62d9

Browse files
update menagerie
1 parent 34849b2 commit b7b62d9

File tree

5 files changed

+39
-12
lines changed

5 files changed

+39
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Added
8+
9+
- Description: Robotiq 2F-85 (MJCF V4)
10+
711
## [1.14.0] - 2025-01-07
812

913
### Added

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -198,17 +198,18 @@ The DOF column denotes the number of actuated degrees of freedom.
198198

199199
### End effectors
200200

201-
| Name | Robot | Maker | DOF | Format |
202-
|-------------------------------|-----------------------|----------------------------|-----|------------|
203-
| `allegro_hand_description` | Allegro Hand | Wonik Robotics | 16 | URDF |
204-
| `allegro_hand_mj_description` | Allegro Hand | Wonik Robotics | 16 | MJCF |
205-
| `barrett_hand_description` | BarrettHand | Barrett Technology | 8 | URDF |
206-
| `leap_hand_v1` | LEAP Hand v1 | Carnegie Mellon University | 16 | URDF |
207-
| `leap_hand_mj_description` | LEAP Hand | Carnegie Mellon University | 16 | MJCF |
208-
| `robotiq_2f85_description` | Robotiq 2F-85 | Robotiq | 1 | URDF |
209-
| `robotiq_2f85_mj_description` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
210-
| `shadow_dexee_mj_description` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
211-
| `shadow_hand_mj_description` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |
201+
| Name | Robot | Maker | DOF | Format |
202+
|----------------------------------|-----------------------|----------------------------|-----|------------|
203+
| `allegro_hand_description` | Allegro Hand | Wonik Robotics | 16 | URDF |
204+
| `allegro_hand_mj_description` | Allegro Hand | Wonik Robotics | 16 | MJCF |
205+
| `barrett_hand_description` | BarrettHand | Barrett Technology | 8 | URDF |
206+
| `leap_hand_v1` | LEAP Hand v1 | Carnegie Mellon University | 16 | URDF |
207+
| `leap_hand_mj_description` | LEAP Hand | Carnegie Mellon University | 16 | MJCF |
208+
| `robotiq_2f85_description` | Robotiq 2F-85 | Robotiq | 1 | URDF |
209+
| `robotiq_2f85_mj_description` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
210+
| `robotiq_2f85_v4_mj_description` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
211+
| `shadow_dexee_mj_description` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
212+
| `shadow_hand_mj_description` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |
212213

213214
### Humanoids
214215

robot_descriptions/_descriptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ def has_urdf(self) -> bool:
115115
"rhea_description": Description(Format.URDF),
116116
"robotiq_2f85_description": Description(Format.URDF),
117117
"robotiq_2f85_mj_description": Description(Format.MJCF),
118+
"robotiq_2f85_v4_mj_description": Description(Format.MJCF),
118119
"romeo_description": Description(Format.URDF),
119120
"sawyer_mj_description": Description(Format.MJCF),
120121
"shadow_hand_mj_description": Description(Format.MJCF),

robot_descriptions/_repositories.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class Repository:
162162
),
163163
"mujoco_menagerie": Repository(
164164
url="https://github.com/deepmind/mujoco_menagerie.git",
165-
commit="a88bc450470d97ebc1f282e5969675fb4d1f0ed7",
165+
commit="dec370da8895f4a04c20bae57a52f3bd16148ee6",
166166
cache_path="mujoco_menagerie",
167167
),
168168
"nao_robot": Repository(
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
# Copyright 2022 Stéphane Caron
6+
7+
"""Robotiq 2F-85 MJCF description."""
8+
9+
from os import getenv as _getenv
10+
from os import path as _path
11+
12+
from ._cache import clone_to_cache as _clone_to_cache
13+
14+
REPOSITORY_PATH: str = _clone_to_cache(
15+
"mujoco_menagerie",
16+
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
17+
)
18+
19+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "robotiq_2f85_v4")
20+
21+
MJCF_PATH: str = _path.join(PACKAGE_PATH, "2f85.xml")

0 commit comments

Comments
 (0)