Skip to content

Commit

Permalink
documentation #202: extend documentation of main page
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienDanieau committed Jan 30, 2024
1 parent e950bad commit 20a47b1
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/reachy2_sdk/__init__.py
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"

0 comments on commit 20a47b1

Please sign in to comment.