File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66
77### Added
88
9+ - Description: TIAGo++ (MJCF) (thanks to @Danfoa )
910- Description: ToddlerBot (URDF)
1011- Description: Unitree H1\_ 2 (MJCF) (thanks to @TonyZYT2000 )
1112- Description: Unitree H1\_ 2 (URDF) (thanks to @TonyZYT2000 )
Original file line number Diff line number Diff line change @@ -277,7 +277,8 @@ The DOF column denotes the number of actuated degrees of freedom.
277277| ` sretch_mj_description ` | Stretch 2 | Hello Robot | MJCF | Clear BSD |
278278| ` sretch_3_mj_description ` | Stretch 3 | Hello Robot | MJCF | Apache-2.0 |
279279| ` tiago_description ` | TIAGo | PAL Robotics | URDF | Apache-2.0 |
280- | ` rby1_description ` | RBY1 | Rainbow Robotics | 24 | URDF |
280+ | ` tiago++_mj_description ` | TIAGo++ | PAL Robotics | MJCF | Apache-2.0 |
281+ | ` rby1_description ` | RBY1 | Rainbow Robotics | URDF | MIT |
281282
282283
283284### Quadrupeds
Original file line number Diff line number Diff line change @@ -222,6 +222,9 @@ def has_urdf(self) -> bool:
222222 "talos_description" : Description (Format .URDF , tags = {"humanoid" }),
223223 "talos_mj_description" : Description (Format .MJCF , tags = {"humanoid" }),
224224 "tiago_description" : Description (Format .URDF , tags = {"mobile_manipulator" }),
225+ "tiago++_mj_description" : Description (
226+ Format .MJCF , tags = {"mobile_manipulator" }
227+ ),
225228 "toddlerbot_description" : Description (Format .URDF , tags = {"humanoid" }),
226229 "trifinger_edu_description" : Description (
227230 Format .URDF , tags = {"educational" }
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 Tiago dual 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_tiago_dual" )
19+
20+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "tiago_dual_position.xml" )
You can’t perform that action at this time.
0 commit comments