Skip to content

Commit 75f91e4

Browse files
Add WL P311E description
1 parent b1d0857 commit 75f91e4

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
1414
- Description: SO ARM 101 (MJCF) (thanks to @haixuantao)
1515
- Description: SO ARM 101 (URDF) (thanks to @haixuantao)
1616
- Description: WL P311D (URDF)
17+
- Description: WL P311E (URDF)
1718

1819
### Changed
1920

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ The DOF column denotes the number of actuated degrees of freedom.
306306
| `rsk_mj_description` | RSK Omnidirectional | Robot Soccer Kit | MJCF | MIT |
307307
| `upkie_description` | Upkie | Stéphane Caron | URDF | Apache-2.0 |
308308
| `wl_p311d_description` | WL P311D | LimX Dynamics | URDF | [Apache-2.0](https://github.com/limxdynamics/robot-description/blob/a097533372a08298d45af391cbdfc2fd2dc3da6f/LICENSE) |
309+
| `wl_p311e_description` | WL P311E | LimX Dynamics | URDF | [Apache-2.0](https://github.com/limxdynamics/robot-description/blob/a097533372a08298d45af391cbdfc2fd2dc3da6f/LICENSE) |
309310

310311
## Contributing
311312

robot_descriptions/_descriptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ def has_urdf(self) -> bool:
229229
"viper_mj_description": Description(Format.MJCF, tags={"arm"}),
230230
"widow_mj_description": Description(Format.MJCF, tags={"arm"}),
231231
"wl_p311d_description": Description(Format.URDF, tags={"quadruped"}),
232+
"wl_p311e_description": Description(Format.URDF, tags={"quadruped"}),
232233
"xarm7_mj_description": Description(Format.MJCF, tags={"arm"}),
233234
"yam_mj_description": Description(Format.MJCF, tags={"arm"}),
234235
"yumi_description": Description(Format.URDF, tags={"dual_arm"}),

robot_descriptions/wl_p311d_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
# SPDX-License-Identifier: Apache-2.0
5-
# Copyright 2022 Stéphane Caron
5+
# Copyright 2025 Inria
66

77
"""WL P311D description."""
88

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
# Copyright 2025 Inria
6+
7+
"""WL P311E 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+
"limxdynamics_robot-description",
16+
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
17+
)
18+
19+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "wheellegged", "WL_P311E")
20+
21+
URDF_PATH: str = _path.join(PACKAGE_PATH, "urdf", "robot.urdf")

0 commit comments

Comments
 (0)