Skip to content

Commit 32522cf

Browse files
committed
feat: Add TIAGo++ description and update README
- Added TIAGo++ (MJCF) description to CHANGELOG.md - Updated README.md to include TIAGo++ in the robot descriptions list
1 parent 614642c commit 32522cf

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
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: Unitree H1\_2 (URDF) (thanks to @TonyZYT2000)
1011
- Description: Unitree H1\_2 (MJCF) (thanks to @TonyZYT2000)
1112

README.md

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,29 @@ Visualizing a robot description:
114114

115115
Available robot descriptions ([gallery](https://github.com/robot-descriptions/awesome-robot-descriptions#gallery)) are listed in the following categories:
116116

117-
- [Arms](#arms)
118-
- [Bipeds](#bipeds)
119-
- [Dual arms](#dual-arms)
120-
- [Drones](#drones)
121-
- [Educational](#educational)
122-
- [End effectors](#end-effectors)
123-
- [Humanoids](#humanoids)
124-
- [Mobile manipulators](#mobile-manipulators)
125-
- [Quadrupeds](#quadrupeds)
126-
- [Wheeled](#wheeled)
117+
- [Robot descriptions in Python](#robot-descriptions-in-python)
118+
- [Installation](#installation)
119+
- [From conda-forge](#from-conda-forge)
120+
- [From PyPI](#from-pypi)
121+
- [Usage](#usage)
122+
- [Show a description](#show-a-description)
123+
- [Import as submodule](#import-as-submodule)
124+
- [Examples](#examples)
125+
- [Descriptions](#descriptions)
126+
- [Arms](#arms)
127+
- [Bipeds](#bipeds)
128+
- [Dual arms](#dual-arms)
129+
- [Drones](#drones)
130+
- [Educational](#educational)
131+
- [End effectors](#end-effectors)
132+
- [Humanoids](#humanoids)
133+
- [Mobile manipulators](#mobile-manipulators)
134+
- [Quadrupeds](#quadrupeds)
135+
- [Wheeled](#wheeled)
136+
- [Contributing](#contributing)
137+
- [Thanks](#thanks)
138+
- [Citation](#citation)
139+
- [See also](#see-also)
127140

128141
The DOF column denotes the number of actuated degrees of freedom.
129142

@@ -277,6 +290,7 @@ The DOF column denotes the number of actuated degrees of freedom.
277290
| `sretch_mj_description` | Stretch 2 | Hello Robot | MJCF | Clear BSD |
278291
| `sretch_3_mj_description` | Stretch 3 | Hello Robot | MJCF | Apache-2.0 |
279292
| `tiago_description` | TIAGo | PAL Robotics | URDF | Apache-2.0 |
293+
| `tiago_pro_mj_description` | TIAGo++ / TIAGo Pro | PAL Robotics | MJCF | Apache-2.0 |
280294
| `rby1_description` | RBY1 | Rainbow Robotics | 24 | URDF |
281295

282296

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_pro_mj_description": Description(
226+
Format.MJCF, tags={"mobile_manipulator"}
227+
),
225228
"trifinger_edu_description": Description(
226229
Format.URDF, tags={"educational"}
227230
),

0 commit comments

Comments
 (0)