-
Notifications
You must be signed in to change notification settings - Fork 542
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27dc98d
commit 5060475
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Servo Module | ||
This module provides a client for interacting with MoveIt servo. | ||
|
||
# Tutorial | ||
Add links to official tutorials here. | ||
|
||
# Supported Devices | ||
* PS4 DualShock Controller | ||
* Oculus Quest 2 (plans to support this device) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# MoveIt2 Pybind11 Bindings | ||
|
||
This directory contains the [Pybind11](https://pybind11.readthedocs.io/en/stable/) binding code used by the moveit_py package. | ||
The root of this directory contains the actual module definitions (e.g. `core.cpp` defines the `moveit_py.core` module). | ||
|
||
The structure of subfolders in this directory reflects that of the MoveIt2 C++ codebase. Within each subfolder you will find the actual binding code that each module leverages. | ||
For instance if I wished to understand how the `PlanningScene` object is being binded I would view the files in `./moveit_core/planning_scene/`. |