generated from pollen-robotics/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
documentation #202: extend documentation of main page
- Loading branch information
1 parent
e950bad
commit 20a47b1
Showing
1 changed file
with
16 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
"""Reachy SDK package. | ||
""" | ||
# ReachySDK package. | ||
This package provides remote access (via socket) to a Reachy robot. | ||
It automatically handles the synchronization with the robot. | ||
In particular, you can easily get an always up-to-date robot state (joint positions, sensors value). | ||
You can also send joint commands, compute forward or inverse kinematics. | ||
Simply do | ||
```python | ||
from reachy2_sdk.reachy_sdk import ReachySDK | ||
reachy = ReachySDK(host="ip_address") | ||
``` | ||
And you're ready to use Reachy! | ||
Provides remote access (via socket) to a Reachy robot. | ||
""" | ||
|
||
from .reachy_sdk import ReachySDK # noqa: F401 | ||
|
||
__version__ = "2.0.0" |