Skip to content

Commit e2bd30d

Browse files
Merge branch 'Danfoa-master'
2 parents 442603f + 0e4a011 commit e2bd30d

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

robot_descriptions/_descriptions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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"}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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")

0 commit comments

Comments
 (0)