Skip to content

Commit e6852f0

Browse files
Add Solo description
1 parent cd1b099 commit e6852f0

File tree

6 files changed

+37
-2
lines changed

6 files changed

+37
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ All notable changes to this project will be documented in this file.
3232
- Reachy
3333
- Romeo
3434
- Simple Humanoid
35+
- Solo
3536
- TALOS
3637
- TIAGo
3738
- Upkie

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
7575
| Reachy | Pollen Robotics | `reachy_description` |
7676
| Romeo | Aldebaran Robotics | `romeo_description` |
7777
| Simple Humanoid | N/A | `simple_humanoid_description` |
78+
| Solo | ODRI | `solo_description` |
7879
| TALOS | PAL Robotics | `talos_description` |
7980
| TIAGo | PAL Robotics | `tiago_description` |
8081
| Upkie | Tast's Robots | `upkie_description` |

robot_descriptions/_description_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"reachy_description",
4949
"romeo_description",
5050
"simple_humanoid_description",
51+
"solo_description",
5152
"talos_description",
5253
"tiago_description",
5354
"upkie_description",

robot_descriptions/laikago_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717

1818
"""
19-
Aliengo description.
19+
Laikago description.
2020
"""
2121

2222
from os import path as _path

robot_descriptions/mini_cheetah_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717

1818
"""
19-
Aliengo description.
19+
Mini Cheetah description.
2020
"""
2121

2222
from os import path as _path
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+
Solo description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
__working_dir__ = _clone_to_cache("example-robot-data")
27+
28+
PATH: str = _path.join(__working_dir__, "robots", "solo_description")
29+
30+
MESHES_PATH: str = _path.join(PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PATH, "robots", "solo12.urdf")

0 commit comments

Comments
 (0)