Skip to main content

Python module to control Upkie wheeled bipeds.

Project description

Upkie wheeled biped robot

CI Documentation Coverage Conda version 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.

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.1.0},
  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.1.0.tar.gz (42.9 kB view details)

Uploaded Source

Built Distribution

upkie-5.1.0-py3-none-any.whl (48.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for upkie-5.1.0.tar.gz
Algorithm Hash digest
SHA256 2bbd264064d86e47249c1cf3f362835c3cad196679e41628501bef244a17746d
MD5 2f6396866cfbb12a85a1074dcfe6dcfb
BLAKE2b-256 99c910aefc472b3ecd68db03a2c486e8588b41fee4bd87f0ffec1308cc700452

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for upkie-5.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1fcb5de68a9f1041d33794fafd8cc161a5e588b70d625c00057ee50aedfe4623
MD5 c1a0a1bc29d60a27837acb650f0734a7
BLAKE2b-256 7bf74ce3e0659c8b8bfa9e1d00282c056b4d7bea4505702279a5a347148034be

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