File tree 5 files changed +24
-1
lines changed
5 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
8
8
9
9
- Description: Unitree B2
10
10
- Description: Left and right LEAP hand (MJCF) (thanks to @kevinzakka )
11
+ - Description: PAL Talos (MJCF) (thanks to @kevinzakka )
11
12
12
13
### Changed
13
14
Original file line number Diff line number Diff line change @@ -229,6 +229,7 @@ The DOF column denotes the number of actuated degrees of freedom.
229
229
| ` romeo_description ` | Romeo | Aldebaran Robotics | 37 | URDF |
230
230
| ` sigmaban_description ` | SigmaBan | Rhoban | 20 | URDF |
231
231
| ` talos_description ` | TALOS | PAL Robotics | 32 | URDF |
232
+ | ` talos_mj_description ` | TALOS | PAL Robotics | 32 | MJCF |
232
233
| ` valkyrie_description ` | Valkyrie | NASA JSC Robotics | 59 | URDF |
233
234
234
235
### Mobile manipulators
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ def has_urdf(self) -> bool:
125
125
"stretch_description" : Description (Format .URDF ),
126
126
"stretch_mj_description" : Description (Format .MJCF ),
127
127
"talos_description" : Description (Format .URDF ),
128
+ "talos_mj_description" : Description (Format .MJCF ),
128
129
"tiago_description" : Description (Format .URDF ),
129
130
"trifinger_edu_description" : Description (Format .URDF ),
130
131
"upkie_description" : Description (Format .URDF ),
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ class Repository:
157
157
),
158
158
"mujoco_menagerie" : Repository (
159
159
url = "https://github.com/deepmind/mujoco_menagerie.git" ,
160
- commit = "f59b989dea80a523b0e0b0fbe550c664939c6376 " ,
160
+ commit = "511be2a8bea4bf06ea4a1825c304a5b0cc6b67b1 " ,
161
161
cache_path = "mujoco_menagerie" ,
162
162
),
163
163
"nao_robot" : Repository (
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ #
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ """PAL Talos description."""
7
+
8
+ from os import getenv as _getenv
9
+ from os import path as _path
10
+
11
+ from ._cache import clone_to_cache as _clone_to_cache
12
+
13
+ REPOSITORY_PATH : str = _clone_to_cache (
14
+ "mujoco_menagerie" ,
15
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
16
+ )
17
+
18
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "pal_talos" )
19
+
20
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "talos_position.xml" )
You can’t perform that action at this time.
0 commit comments