This is the client library for the Fourier GRX robot. The correponding server library can be found here.
For users who have been using Wiki-GRx-Deploy and those who are new to this library, Please note the following breaking changes:
- Wiki-GRx-Deploy has been deprecated and is no longer supported.
- All user-facing interfaces now default to use radians instead of degrees.
- URDF now loads from Wiki-GRx-Models via fourier-robot-descriptions package.
- Nameing convention for all links and joints are now consistent with the URDF.
- Config file structure has been updated to match the latest version of the server. Default config file can be found under config directory.
This software is highly unstable and subject to change at any time. Version 0.2.0a8 is only compatible with
fourier-grx
versionv1.0.0a20
and up.
On the robot, install fourier-grx==1.0.0a20
following the Installation Instructions.
Grx client will be automatically installed when installing fourier-grx
on the robot.
If you want to control the robot from another machine, you can install the client library using the following methods:
Run:
pip install fourier-grx-client==0.2.0a8
git clone https://github.com/FFTAI/fourier-grx-client.git
cd fourier-grx-client
pip install -e .
Please read the Tutorial for a step-by-step guide on how to get started and use the interfaces.
Demo scripts can be found in the examples directory.
For more information on the API, see the API Reference.
- Install the
pdm
package manager:
pip install pdm
- use
pdm
to install the package and all development dependencies:
pdm install -v -d
- Install pre-commit hooks:
pre-commit install