Skip to main content

Bamboo Franka Robot Control with Joint Impedance Control

Project description

Bamboo Franka Controller

A lightweight package for controlling the Franka Emika FR3 and Panda with joint impedance control and controlling Robotiq grippers.

A single real-time controller machine runs the control node and maintains the real-time link with the FR3/Panda. Other machines can connect to this node using the Bamboo client via ZMQ to issue commands or receive robot state.

Control Node Installation

Install the control node on the real-time control machine that is directly connected to the Franka robot.

Prerequisites

  1. Ensure that the libfranka system requirements are satisfied
  2. Ensure that the libfranka dependencies are installed
  3. If using libfranka >= 0.14.0: Install Pinocchio following the libfranka dependency instructions before running the installation script
  4. Make sure you have set the inertial parameters for the Robotiq gripper in Franka Desk. You can follow the instructions in DROID for doing this.

Build Controller

# Follow the instructions in the script
bash InstallBambooController

Note: This script builds libfranka locally and will not override any system installations. The installation script may request sudo privileges to add user groups and install system packages. You will be prompted before any sudo commands are executed.

You will also be prompted to enter the version of libfranka to install. This can be determined by:

  • Checking the FCI version in the Franka Desk (under Settings > Dashboard > Control) and then consulting the FCI Compatability Table for a compatible libfranka version
  • Checking what libfranka versions you already have in other projects, you could run:
    locate libfranka.so
    

The InstallBambooController script will automatically handle:

  • Adding your user to required groups (realtime for real-time kernel operations, dialout and tty for serial communication with Robotiq gripper)
  • Installing system packages (libzmq3-dev for ZMQ networking, libmsgpack-dev for message serialization, libpoco-dev for Franka dependencies)
  • Cloning and building libfranka

Important: If groups are added during installation, you must log out and log back in before running the controller.

Manual Installation

If you prefer to install manually, refer to the steps in the InstallBambooController script.

Bamboo Client Installation

You should install the Bamboo client on any machine that will talk to the control node. This installation only includes the client dependencies (numpy, pyzmq, msgpack) and not the hardware control dependencies.

Install from PyPI:

pip install bamboo-franka-client

Install from GitHub repository:

pip install git+https://github.com/chsahit/bamboo.git

Install from source:

git clone https://github.com/chsahit/bamboo.git
cd bamboo
pip install -e .

If you need Robotiq gripper server dependencies (pyserial, pymodbus) on a non-control node machine:

pip install -e .[server]

Usage

Server-Side Robot Control

Security Warning: By default, the controller listens on all network interfaces (* or 0.0.0.0), accepting commands from any IP address that can reach the machine. For security, consider restricting access by setting the listen address using the --listen_ip flag in RunBambooController (or the equivalent configuration option): for example, use 127.0.0.1 to accept commands only from the local machine, or a specific interface address such as 192.168.1.10 to accept commands only from that network. Avoid using */0.0.0.0 on untrusted or publicly accessible networks unless you have additional protections in place (VPN, firewall, etc.).

Easy Start (Recommended): Use the provided script to start both control node and gripper server in tmux:

bash RunBambooController

The script supports configuration flags:

bash RunBambooController start --robot_ip 172.16.0.2 --control_port 5555 --listen_ip "*" --gripper_device /dev/ttyUSB0 --gripper_port 5559 --conda_env bamboo

Available options:

  • --robot_ip: Robot IP address (default: 172.16.0.2)
  • --control_port: Control node ZMQ port (default: 5555)
  • --listen_ip: ZMQ server listen address (default: * for all interfaces)
  • --gripper_device: Gripper device (default: /dev/ttyUSB0)
  • --gripper_port: Gripper server ZMQ port (default: 5559)
  • --conda_env: Conda environment name (default: bamboo)

Other commands:

  • bash RunBambooController status - Check server status
  • bash RunBambooController stop - Stop all servers
  • bash RunBambooController attach - Attach to tmux session

Manual Start: If you need to run servers manually, first run the C++ control node:

cd controller/build
./bamboo_control_node -r <robot-ip> -p <zmq-port> [-l <listen-address>] [-m]

Available flags:

  • -r: Robot IP address (required)
  • -p: Port number (required)
  • -l: Listen address (default: * for all interfaces)
  • -m: Use min-jerk interpolation (default: linear)
  • -h: Show help

Example:

./bamboo_control_node -r 172.16.0.2 -p 5555 -l "*"

Then in a new terminal, launch the Robotiq gripper server:

conda activate bamboo
cd controller
python gripper_server.py --gripper-port <gripper-device> --zmq-port <zmq-port>

Example:

python gripper_server.py --gripper-port /dev/ttyUSB0 --zmq-port 5559

Client-Side Interface with robot and gripper

You can verify the install by running some of the example scripts in a new terminal. To actuate the robot and print out its joint angles (WARNING: THIS SCRIPT MOVES THE ROBOT WITHOUT DOING COLLISION CHECKING SO MAKE SURE THE NEARBY WORKSPACE IS CLEAR):

conda activate bamboo
python -m bamboo.examples.joint_trajectory

To open and close the gripper and print the width of the fingers:

conda activate bamboo
python -m bamboo.examples.gripper

Development Setup

If you plan to contribute to Bamboo, you'll need to set up the development tools.

Install Development Dependencies

Install the development dependencies including pre-commit, ruff, and mypy:

pip install -e .[dev]

Set Up Pre-Commit Hooks

Install the pre-commit hooks to automatically run linting and formatting checks before each commit:

pre-commit install

Now, whenever you commit code, pre-commit will automatically:

  • Format Python code with ruff
  • Check Python code style with ruff

Run Pre-Commit Manually

To run all pre-commit hooks on all files without making a commit:

pre-commit run --all-files

To run pre-commit on specific files:

pre-commit run --files path/to/file.py

Contributing

For Python code, we enforce style with ruff and type checking with mypy. For C++ code, we enforce style with clang-format.

Pre-commit hooks will automatically run linting and formatting checks when you make a commit. You can also run them manually with pre-commit run --all-files.

To contribute:

  1. Fork the repository
  2. Create a feature branch based on main
  3. Install development dependencies: pip install -e .[dev]
  4. Set up pre-commit hooks: pre-commit install
  5. Make your changes and commit them
  6. Open a pull request from your feature branch

Acknowledgements

This work draws heavily from deoxys_control and drake-franka-driver. Thanks to the developers for their open-source code!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bamboo_franka_client-0.1.1.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bamboo_franka_client-0.1.1-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file bamboo_franka_client-0.1.1.tar.gz.

File metadata

  • Download URL: bamboo_franka_client-0.1.1.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for bamboo_franka_client-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1d6f72f58265f1bc1986f7cbc1923eb2969e53230948bc290095d250af88cc1c
MD5 6d7d443c3b9cf18b900615255f656b43
BLAKE2b-256 de4f42f89961260a96eeec21187c9fcc3b39fce21ae08ef2746a6f9f30153c58

See more details on using hashes here.

File details

Details for the file bamboo_franka_client-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for bamboo_franka_client-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1afc26314e92805719beed0c490ac50053eb3aea5dd82714f89c85aa9116222d
MD5 8b8f1a1483fcc65bd2d6c2368d182522
BLAKE2b-256 8e131734f7491efd07dccb055ca1f526c10f229629f08753ef8eea3750f9fe98

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page