Skip to content

Commit 91de4f4

Browse files
Add Pepper description
1 parent a12e5d9 commit 91de4f4

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
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: Go1
1515
- Description: Laikago MJCF
1616
- Description: Panda MJCF
17+
- Description: Pepper
1718
- Description: Robotiq 2F-85
1819
- Description: Robotiq 2F-85 MJCF
1920
- Description: Shadow Hand MJCF

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
119119
| Minitaur | Ghost Robotics | URDF | `minitaur_description` |
120120
| Panda | Franka Emika | URDF | `panda_description` |
121121
| Panda | Franka Emika | MJCF | `panda_mj_description` |
122+
| Pepper | SoftBank Robotics | URDF | `pepper_description` |
122123
| PR2 | Willow Garage | URDF | `pr2_description` |
123124
| Reachy | Pollen Robotics | URDF | `reachy_description` |
124125
| Romeo | Aldebaran Robotics | URDF | `romeo_description` |

robot_descriptions/_repositories.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ class Repository:
120120
commit="2665e9bc0f476e5f505ff929d758ed36f8618fa8",
121121
cache_path="deepmind/mujoco_menagerie",
122122
),
123+
"pepper_description": Repository(
124+
url="https://github.com/jrl-umi3218/pepper_description.git",
125+
commit="cd9715bb5df7ad57445d953db7b1924255305944",
126+
cache_path="jrl-umi3218/pepper_description",
127+
),
123128
"reachy_description": Repository(
124129
url="https://github.com/aubrune/reachy_description.git",
125130
commit="release-1.0.0",
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright 2022 Stéphane Caron
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
"""
19+
Pepper description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
REPOSITORY_PATH: str = _clone_to_cache("pepper_description")
27+
28+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH)
29+
30+
MESHES_PATH: str = _path.join(PACKAGE_PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PACKAGE_PATH, "urdf", "pepper.urdf")

0 commit comments

Comments
 (0)