Skip to main content

Python module to control Upkie wheeled bipeds.

Project description

Upkie wheeled biped robot

CI Documentation Coverage PyPI version Chat

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:

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 version

conda install -c conda-forge upkie

From PyPI

PyPI version

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

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 and Tordjman--Levavasseur, Valentin},
  license = {Apache-2.0},
  url = {https://github.com/upkie/upkie},
  version = {5.0.1},
  year = {2024}
}

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

upkie-5.0.1.tar.gz (36.7 kB view details)

Uploaded Source

Built Distribution

upkie-5.0.1-py3-none-any.whl (39.1 kB view details)

Uploaded Python 3

File details

Details for the file upkie-5.0.1.tar.gz.

File metadata

  • Download URL: upkie-5.0.1.tar.gz
  • Upload date:
  • Size: 36.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for upkie-5.0.1.tar.gz
Algorithm Hash digest
SHA256 16288ec1eabbe259e1f98724a7d0869f8e61de049d9941cfe828a524f3ea8641
MD5 56b1302c49236b3e4f7f670799c924a3
BLAKE2b-256 5bb2081408d7681635e20ebc335b8a4d3809592384384f25865055310705f7ea

See more details on using hashes here.

File details

Details for the file upkie-5.0.1-py3-none-any.whl.

File metadata

  • Download URL: upkie-5.0.1-py3-none-any.whl
  • Upload date:
  • Size: 39.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for upkie-5.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 44376a0169ab0047128bf5fb10913927d7abee333c46dd41015a74cd0b87b9e1
MD5 81c332d3172ac46f49c13a5e7cb9e74a
BLAKE2b-256 29146c05c77e95d138937f2718775182a7856a289251e89f16b4d208a98de971

See more details on using hashes here.

Supported by

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