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.
Install the control node on the real-time control machine that is directly connected to the Franka robot.
- Ensure that the
libfrankasystem requirements are satisfied - Ensure that the
libfrankadependencies are installed - If using libfranka >= 0.14.0: Install Pinocchio following the libfranka dependency instructions before running the installation script
- 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.
# Follow the instructions in the script
bash InstallBambooControllerNote: 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
libfrankaversion - 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 (
realtimefor real-time kernel operations,dialoutandttyfor serial communication with Robotiq gripper) - Installing system packages (
libzmq3-devfor ZMQ networking,libmsgpack-devfor message serialization,libpoco-devfor 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.
If you prefer to install manually, refer to the steps in the InstallBambooController script.
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 GitHub repository:
pip install git+https://github.com/chsahit/bamboo.gitInstall 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]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 RunBambooControllerThe 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 bambooAvailable 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 statusbash RunBambooController stop- Stop all serversbash 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 5559You 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_trajectoryTo open and close the gripper and print the width of the fingers:
conda activate bamboo
python -m bamboo.examples.gripperIf you plan to contribute to Bamboo, you'll need to set up the development tools.
Install the development dependencies including pre-commit, ruff, and mypy:
pip install -e .[dev]Install the pre-commit hooks to automatically run linting and formatting checks before each commit:
pre-commit installNow, whenever you commit code, pre-commit will automatically:
- Format Python code with ruff
- Check Python code style with ruff
To run all pre-commit hooks on all files without making a commit:
pre-commit run --all-filesTo run pre-commit on specific files:
pre-commit run --files path/to/file.pyFor 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:
- Fork the repository
- Create a feature branch based on
main - Install development dependencies:
pip install -e .[dev] - Set up pre-commit hooks:
pre-commit install - Make your changes and commit them
- Open a pull request from your feature branch
This work draws heavily from deoxys_control and drake-franka-driver. Thanks to the developers for their open-source code!