Skip to content

Add YAM (URDF) + RBY1 Mobile Manipulators (URDF) #152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file.

- Description: Dynamixel 2R (MJCF)
- Description: YAM (MJCF) (thanks to @kevinzakka)
- Description YAM (URDF)
- Description RBY1 Mobile Manipulatior (URDF)

## [1.17.0] - 2025-05-08

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ The DOF column denotes the number of actuated degrees of freedom.
| `widow_mj_description` | WidowX | Trossen Robotics | MJCF | BSD-3-Clause |
| `xarm7_mj_description` | xArm7 | UFACTORY | MJCF | BSD-3-Clause |
| `yam_mj_description` | YAM | I2RT Robotics | MJCF | MIT |
| `yam_description` | YAM | I2RT Robotics | URDF | MIT |
| `z1_description` | Z1 | UNITREE Robotics | URDF | BSD-3-Clause |
| `z1_mj_description` | Z1 | UNITREE Robotics | MJCF | BSD-3-Clause |

Expand Down Expand Up @@ -267,6 +268,8 @@ The DOF column denotes the number of actuated degrees of freedom.
| `sretch_mj_description` | Stretch 2 | Hello Robot | 14 | MJCF |
| `sretch_3_mj_description` | Stretch 3 | Hello Robot | 14 | MJCF |
| `tiago_description` | TIAGo | PAL Robotics | 48 | URDF |
| `rby1_description` | RBY1 | Rainbow Robotics | 24 | URDF |


### Quadrupeds

Expand Down
2 changes: 2 additions & 0 deletions robot_descriptions/_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ def has_urdf(self) -> bool:
"widow_mj_description": Description(Format.MJCF, tags={"arm"}),
"xarm7_mj_description": Description(Format.MJCF, tags={"arm"}),
"yam_mj_description": Description(Format.MJCF, tags={"arm"}),
"yam_description": Description(Format.URDF, tags={"arm"}),
"rby1_description": Description(Format.URDF, tags={"mobile_manipulator"}),
"yumi_description": Description(Format.URDF, tags={"dual_arm"}),
"z1_description": Description(Format.URDF, tags={"arm"}),
"z1_mj_description": Description(Format.MJCF, tags={"arm"}),
Expand Down
10 changes: 10 additions & 0 deletions robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,4 +305,14 @@ class Repository:
commit="9a6a057a055babaf47119fac42c361fffc189128",
cache_path="skydio_x2_description",
),
"i2rt": Repository(
url="https://github.com/i2rt-robotics/i2rt.git",
commit="8a8f804d72b41a04a5c69520031aec9a5d328104",
cache_path="i2rt",
),
"rby1_description": Repository(
url="https://github.com/uynitsuj/rby1_description.git",
commit="d8e8fe5f92604ef56e11db7f9798973cf94767cb",
cache_path="rby1_description",
),
}
21 changes: 21 additions & 0 deletions robot_descriptions/rby1_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""YAM URDF description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"rby1_description",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "models/rby1a")

URDF_PATH: str = _path.join(PACKAGE_PATH, "urdf/model.urdf")
21 changes: 21 additions & 0 deletions robot_descriptions/rby1_mj_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""YAM URDF description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"rby1_description",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "models/rby1a")

MJCF_PATH: str = _path.join(PACKAGE_PATH, "mujoco/model.xml")
21 changes: 21 additions & 0 deletions robot_descriptions/yam_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""YAM URDF description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"i2rt",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "robot_models/yam/assets")

URDF_PATH: str = _path.join(REPOSITORY_PATH, "robot_models/yam/yam.urdf")
Loading