File tree Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
14
14
- Description: Go1
15
15
- Description: Laikago MJCF
16
16
- Description: Panda MJCF
17
+ - Description: Pepper
17
18
- Description: Robotiq 2F-85
18
19
- Description: Robotiq 2F-85 MJCF
19
20
- Description: Shadow Hand MJCF
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
119
119
| Minitaur | Ghost Robotics | URDF | ` minitaur_description ` |
120
120
| Panda | Franka Emika | URDF | ` panda_description ` |
121
121
| Panda | Franka Emika | MJCF | ` panda_mj_description ` |
122
+ | Pepper | SoftBank Robotics | URDF | ` pepper_description ` |
122
123
| PR2 | Willow Garage | URDF | ` pr2_description ` |
123
124
| Reachy | Pollen Robotics | URDF | ` reachy_description ` |
124
125
| Romeo | Aldebaran Robotics | URDF | ` romeo_description ` |
Original file line number Diff line number Diff line change @@ -120,6 +120,11 @@ class Repository:
120
120
commit = "2665e9bc0f476e5f505ff929d758ed36f8618fa8" ,
121
121
cache_path = "deepmind/mujoco_menagerie" ,
122
122
),
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
+ ),
123
128
"reachy_description" : Repository (
124
129
url = "https://github.com/aubrune/reachy_description.git" ,
125
130
commit = "release-1.0.0" ,
Original file line number Diff line number Diff line change
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" )
You can’t perform that action at this time.
0 commit comments