Skip to content

Commit 42c29ab

Browse files
Add SO-ARM100 description
1 parent 9d13275 commit 42c29ab

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ All notable changes to this project will be documented in this file.
66

77
### Added
88

9-
- Description: Unitree B2
109
- Description: Left and right LEAP hand (MJCF) (thanks to @kevinzakka)
1110
- Description: PAL Talos (MJCF) (thanks to @kevinzakka)
11+
- Description: SO-ARM100
12+
- Description: Unitree B2
1213

1314
### Changed
1415

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ The DOF column denotes the number of actuated degrees of freedom.
145145
| `panda_mj_description` | Panda | Franka Robotics | 8 | MJCF |
146146
| `poppy_ergo_jr_description` | Poppy Ergo Jr | Poppy Project | 6 | URDF |
147147
| `sawyer_mj_description` | Sawyer | Rethink Robotics | 7 | MJCF |
148+
| `so_arm100` | SO-ARM100 | The Robot Studio | 6 | URDF |
148149
| `ur10_description` | UR10 | Universal Robots | 6 | URDF |
149150
| `ur10e_mj_description` | UR10e | Universal Robots | 6 | MJCF |
150151
| `ur3_description` | UR3 | Universal Robots | 6 | URDF |

Diff for: robot_descriptions/_descriptions.py

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ def has_urdf(self) -> bool:
120120
"simple_humanoid_description": Description(Format.URDF),
121121
"skydio_x2_description": Description(Format.URDF),
122122
"skydio_x2_mj_description": Description(Format.MJCF),
123+
"so_arm100": Description(Format.URDF),
123124
"solo_description": Description(Format.URDF),
124125
"spryped_description": Description(Format.URDF),
125126
"stretch_description": Description(Format.URDF),

Diff for: robot_descriptions/_repositories.py

+5
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,11 @@ class Repository:
230230
commit="0e488ee4708155a71b2a92d05305a9186b543593",
231231
cache_path="simple_humanoid_description",
232232
),
233+
"SO-ARM100": Repository(
234+
url="https://github.com/TheRobotStudio/SO-ARM100.git",
235+
commit="8967344301571dfa22660c73a901ad00acd6ee91",
236+
cache_path="SO-ARM100",
237+
),
233238
"spryped": Repository(
234239
url="https://github.com/bbokser/spryped.git",
235240
commit="f360a6b78667a4d97c86cad465ef8f4c9512462b",

Diff for: robot_descriptions/so_arm100.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
# Copyright 2022 Stéphane Caron
6+
7+
"""SO-ARM100 description."""
8+
9+
from os import getenv as _getenv
10+
from os import path as _path
11+
12+
from ._cache import clone_to_cache as _clone_to_cache
13+
14+
REPOSITORY_PATH: str = _clone_to_cache(
15+
"SO-ARM100",
16+
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
17+
)
18+
19+
PACKAGE_PATH: str = _path.join(
20+
REPOSITORY_PATH, "URDF", "SO_5DOF_ARM100_8j_URDF.SLDASM"
21+
)
22+
23+
URDF_PATH: str = _path.join(
24+
PACKAGE_PATH, "urdf", "SO_5DOF_ARM100_8j_URDF.SLDASM.urdf"
25+
)

0 commit comments

Comments
 (0)