File tree 5 files changed +34
-1
lines changed
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.
6
6
7
7
### Added
8
8
9
- - Description: Unitree B2
10
9
- Description: Left and right LEAP hand (MJCF) (thanks to @kevinzakka )
11
10
- Description: PAL Talos (MJCF) (thanks to @kevinzakka )
11
+ - Description: SO-ARM100
12
+ - Description: Unitree B2
12
13
13
14
### Changed
14
15
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.
145
145
| ` panda_mj_description ` | Panda | Franka Robotics | 8 | MJCF |
146
146
| ` poppy_ergo_jr_description ` | Poppy Ergo Jr | Poppy Project | 6 | URDF |
147
147
| ` sawyer_mj_description ` | Sawyer | Rethink Robotics | 7 | MJCF |
148
+ | ` so_arm100 ` | SO-ARM100 | The Robot Studio | 6 | URDF |
148
149
| ` ur10_description ` | UR10 | Universal Robots | 6 | URDF |
149
150
| ` ur10e_mj_description ` | UR10e | Universal Robots | 6 | MJCF |
150
151
| ` 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:
120
120
"simple_humanoid_description" : Description (Format .URDF ),
121
121
"skydio_x2_description" : Description (Format .URDF ),
122
122
"skydio_x2_mj_description" : Description (Format .MJCF ),
123
+ "so_arm100" : Description (Format .URDF ),
123
124
"solo_description" : Description (Format .URDF ),
124
125
"spryped_description" : Description (Format .URDF ),
125
126
"stretch_description" : Description (Format .URDF ),
Original file line number Diff line number Diff line change @@ -230,6 +230,11 @@ class Repository:
230
230
commit = "0e488ee4708155a71b2a92d05305a9186b543593" ,
231
231
cache_path = "simple_humanoid_description" ,
232
232
),
233
+ "SO-ARM100" : Repository (
234
+ url = "https://github.com/TheRobotStudio/SO-ARM100.git" ,
235
+ commit = "8967344301571dfa22660c73a901ad00acd6ee91" ,
236
+ cache_path = "SO-ARM100" ,
237
+ ),
233
238
"spryped" : Repository (
234
239
url = "https://github.com/bbokser/spryped.git" ,
235
240
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