File tree Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
+ - Description: Adam Lite (MJCF)
9
10
- Description: ARX L5 (MJCF) (thanks to @jonzamora )
10
11
- Description: Kinova Gen3 Lite (URDF)
11
12
- Description: Low-cost robot arm (MJCF)
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ The DOF column denotes the number of actuated degrees of freedom.
227
227
| Name | Robot | Maker | Format | License |
228
228
| ---------------------------------| -----------------------| --------------------------| ------------| ---------|
229
229
| ` apollo_mj_description ` | Apollo | Apptronik | MJCF | [ Apache-2.0] ( https://github.com/google-deepmind/mujoco_menagerie/blob/bf04290ac7911fa7a39339c7e507792fd464c438/apptronik_apollo/LICENSE ) |
230
+ | ` adam_lite_mj_description ` | Adam Lite | PNDBotics | MJCF | [ MIT] ( https://github.com/google-deepmind/mujoco_menagerie/blob/4035f8e628b7e613d03ba7fdfc6fae3da2f30296/pndbotics_adam_lite/LICENSE ) |
230
231
| ` atlas_drc_description ` | Atlas DRC (v3) | Boston Dynamics | URDF | BSD-3-Clause |
231
232
| ` atlas_v4_description ` | Atlas v4 | Boston Dynamics | URDF | MIT |
232
233
| ` berkeley_humanoid_description ` | Berkeley Humanoid | Hybrid Robotics | URDF | BSD-3-Clause |
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ def has_urdf(self) -> bool:
59
59
"ability_hand_mj_description" : Description (
60
60
Format .MJCF , tags = {"end_effector" }
61
61
),
62
+ "adam_lite_mj_description" : Description (Format .MJCF , tags = {"humanoid" }),
62
63
"aliengo_description" : Description (Format .URDF , tags = {"quadruped" }),
63
64
"aliengo_mj_description" : Description (Format .MJCF , tags = {"quadruped" }),
64
65
"allegro_hand_description" : Description (
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 2025 Inria
6
+
7
+ """Adam Lite MJCF 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
+ "mujoco_menagerie" ,
16
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
17
+ )
18
+
19
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "pndbotics_adam_lite" )
20
+
21
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "adam_lite.xml" )
You can’t perform that action at this time.
0 commit comments