File tree Expand file tree Collapse file tree 5 files changed +34
-1
lines changed Expand file tree Collapse file tree 5 files changed +34
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 |
Original file line number Diff line number Diff 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 ),
Original file line number Diff line number Diff 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" ,
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+ # 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+ )
You can’t perform that action at this time.
0 commit comments