File tree 4 files changed +26
-0
lines changed
4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Added
8
+
9
+ - Description: UFACTORY xArm7 (MJCF) (thanks to @kevinzakka )
10
+
7
11
## [ 1.9.0] - 2024-03-27
8
12
9
13
### Added
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ The DOF column denotes the number of actuated degrees of freedom.
148
148
| ` ur5_description ` | UR5 | Universal Robots | 6 | URDF |
149
149
| ` ur5e_mj_description ` | UR5e | Universal Robots | 6 | MJCF |
150
150
| ` viper_mj_description ` | Viper | Trossen Robotics | 7 | MJCF |
151
+ | ` xarm7_mj_description ` | xArm7 | UFACTORY | 7 | MJCF |
151
152
| ` z1_description ` | Z1 | UNITREE Robotics | 6 | URDF |
152
153
153
154
### Bipeds
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ def has_urdf(self) -> bool:
128
128
"ur5e_mj_description" : Description (Format .MJCF ),
129
129
"valkyrie_description" : Description (Format .URDF ),
130
130
"viper_mj_description" : Description (Format .MJCF ),
131
+ "xarm7_mj_description" : Description (Format .MJCF ),
131
132
"yumi_description" : Description (Format .URDF ),
132
133
"z1_description" : Description (Format .URDF ),
133
134
"z1_mj_description" : Description (Format .MJCF ),
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
+
6
+ """UFACTORY xArm7 MJCF description."""
7
+
8
+ from os import getenv as _getenv
9
+ from os import path as _path
10
+
11
+ from ._cache import clone_to_cache as _clone_to_cache
12
+
13
+ REPOSITORY_PATH : str = _clone_to_cache (
14
+ "mujoco_menagerie" ,
15
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
16
+ )
17
+
18
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "ufactory_xarm7" )
19
+
20
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "xarm7.xml" )
You can’t perform that action at this time.
0 commit comments