Python module to control Upkie wheeled bipeds.
Project description
Upkie wheeled biped robot
Upkie is a fully open source self-balancing wheeled biped robot. It has wheels for balancing and legs to negotiate uneven terrains. Upkies are designed to be buildable at home using only tools and components ordered online, like mjbots actuators. You can develop in Python or C++, on Linux or macOS, then deploy your software to the robot's Raspberry Pi.
This repository contains all the materials needed to build and animate an Upkie:
- Hardware:
- Software:
- Going further:
Questions are welcome in the Chat and Discussions forum.
Getting started
You can play with a balancing Upkie right away from your command line:
git clone https://github.com/upkie/upkie.git
cd upkie
./try_pid_balancer.sh
Click on the robot in the simulator window to apply external forces. If you have a gaming controller connected to your computer, steer its joysticks to move the robot around 🎮
Installation
From conda-forge
conda install -c conda-forge upkie
From PyPI
pip install upkie
Example
First, let's start a simulation:
./start_simulation.sh
Once a spine (simulation or real robot) is running, you can control the robot in Python using one of the Gymnasium environments. For example, here is a proportional feedback balancer:
import gymnasium as gym
import upkie.envs
upkie.envs.register()
with gym.make("UpkieGroundVelocity-v3", frequency=200.0) as env:
observation, _ = env.reset()
action = 0.0 * env.action_space.sample()
for step in range(1_000_000):
observation, reward, terminated, truncated, _ = env.step(action)
if terminated or truncated:
observation, _ = env.reset()
pitch = observation[0]
action[0] = 10.0 * pitch
Executing the code above will balance the simulated Upkie. To run the agent on the robot, do the same but running the pi3hat spine instead of the simulation.
Agents
The demo agent simply balances in place by PID control. There are more advanced Upkie agents distributed in their own repositories. Check out the ones you are interested in:
- MPC balancer: balance in place using model predictive control.
- Pink balancer: an extended PID balancer than can crouch and lift its legs.
- PPO balancer: balance in place with a policy trained by reinforcement learning.
Head over to the new_agent template to create your own.
Frequently Asked Questions
- Is the Python API fast enough for real-time control?
- Can we step a Gym environment faster than real time?
- How to pair a Bluetooth controller to the Raspberry Pi?
Citation
If you built an Upkie or use parts of this project in your works, please cite it as follows:
@software{upkie,
title = {{Upkie open source wheeled biped robot}},
author = {Caron, St\'{e}phane and Perrin-Gilbert, Nicolas and Ledoux, Viviane and G\"{o}kbakan, \"{Umit} Bora and Raverdy, Pierre-Guillaume and Raffin, Antonin},
license = {Apache-2.0},
url = {https://github.com/upkie/upkie},
version = {4.0.0},
year = {2024}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file upkie-4.0.0.tar.gz
.
File metadata
- Download URL: upkie-4.0.0.tar.gz
- Upload date:
- Size: 33.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c5e81f353a334e8d6e7c671898d6432308b505f3cae89aba9c967863f528070 |
|
MD5 | 721d9604e552466be0fdcd129ecddc5d |
|
BLAKE2b-256 | e8e0c607ec51b724de5f1d40e9eaed82f15e0e69517d54a19c6610cf442ee127 |
File details
Details for the file upkie-4.0.0-py3-none-any.whl
.
File metadata
- Download URL: upkie-4.0.0-py3-none-any.whl
- Upload date:
- Size: 35.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf5dbd441d9db7fee479ce3b409b656a5e7e189255e022484b981dbe08b89993 |
|
MD5 | 492112accb3e7284c6200265253114e4 |
|
BLAKE2b-256 | fa67e4fd5c2d0118ba156029bdc2058bfd76297a8a3a71944441f3dd1bc32680 |