Peng is a minimal quadrotor autonomy framework written in Rust that provides real-time dynamics simulation, trajectory planning, and control with modern visualization capabilities.
- 🚁 Real-time Simulation
- High-fidelity quadrotor dynamics with configurable parameters
- IMU and depth sensor simulation
- Optional RK4 integration for accurate dynamics
- 🎮 Advanced Control
- PID control for position and attitude with tunable gains
- Integral windup prevention
- Support for different control frequencies
- 📍 Rich Trajectory Planning
- Minimum jerk line trajectory planner
- Lissajous curve planner
- Circular trajectory planner
- Obstacle avoidance planner
- Waypoint navigation planner
- Landing planner
- 📊 Visualization & Debug
- Real-time 3D visualization via rerun.io
- Depth map rendering
- State telemetry logging
- Configurable logging frequencies
- ⚡ Performance
- Memory-safe and Efficient Rust implementation
- Multi-threaded depth rendering
- Rust
- rerun-cli
- protoc - required for interfacing with Liftoff: FPV Drone Racing or hardware experiments.
# Install rerun-cli (ensure version >= 0.19.0)
cargo install rerun-cli
cargo install peng_quad
peng_quad config/quad.yaml
# Install rerun-cli (ensure version >= 0.19.0)
cargo install rerun-cli
git clone https://github.com/makeecat/Peng.git
cd Peng
cargo run --release config/quad.yaml
- You can configure the simulation through config file, see quad.yaml for example.
- Configure simulation parameters such as mass, inertia, and control gains.
- Configure control parameters such as PID gains.
- Configure trajectory planner parameters such as waypoints, obstacles, and trajectory type.
- Configure visualization parameters such as camera intrinsics and depth rendering.
This fork of Peng for the Hybrid Systems Lab supports interfaces to external simulators, name Liftoff®: FPV Drone Racing. Peng is a realistic FPV drone simualtion designed to give hobbyists and enthusiasts flight experienece that is transferrable to flying a real vehicle. Liftoff provides a means for retrieving detailed state feedback from the simulation from commands on a UDP port. With the addition of a CyberRC device, we can close the loop and fly in Liftoff with automatic control.
To run Peng with Liftoff, follow these steps:
-
Install Liftoff: FPV Drone Racing from Steam.
-
Configure Liftoff telemetry so that the controller can get feedback from the drone. See the guide here. Liftoff provides feedback from the internal drone simulation at roughly 100Hz, which is quite good for position control. The configuration values specified in this file influence what is included in the feedback packet we get from Liftoff. By extension, this also influences how we need to parse the binary payload. The binary parser is currently implemented to read data from this configuration:
{ "EndPoint": "127.0.0.1:9001", "StreamFormat": [ "Timestamp", "Position", "Attitude", "Gyro", "Input", "MotorRPM" ] }
If you need to add or remove items from telemetry, you will also need to modify the LiftoffPacket struct in
src/liftoff_quadrotor.rs
. Remote endpoints can also be specified, with the caveat that you will need to configure your network and interfaces to support such a setup. -
Attach a CyberRC device to the host PC that is running Peng. This device will be used to send control signals to Liftoff. The device should be connected to the host PC via USB. You will also need a USB to serial UART adapter to communicate with the device.
-
Run Peng with a configuration file set up to run with Liftoff. This configuration file will be quite similar to the stock configuration file used to run self contained simulations with Peng, with some minor additional configuration for the port to retrieve feedback from Liftoff, which serial interface the CyberrC is connnected to, and what baud rate to use to send serial commands to the device.
If you encountered any issue with the rerun:
- Verify rerun-cli version matches rerun version in Cargo.toml:
rerun --version
- For Linux/WSL2 users, consult the rerun troubleshooting.
- Wind field and environmental effects
- Motor dynamics simulation
- Multi-quadrotor simulation
- Model Predictive Control (MPC)
We welcome contributions of all kinds! Please check out the Contributing Guidelines for more details.
Peng is free, open source and permissively licensed! Except where noted (below and/or in individual files), all code in this repository is dual-licensed under either:
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) at your option.
This means you can select the license you prefer!
Peng (鵬/鹏, péng), or Dapeng (大鵬), represents a mythical Chinese bird that transforms from a giant Kun (鯤/鲲) fish. This name reflects our framework's adaptability and transformative capabilities.
- Peng #1: Minimal quadrotor pipeline in Rust
- Peng #2: Error Handling, Configuration System and Obstacle Avoidance Planner
- Peng #3: Optimization of Depth Rendering and RK4-based Dynamics Update
If you use this project in your research or work, please cite it as follows:
@software{peng_quad,
author = {Yang Zhou},
title = {Peng: A Minimal Quadrotor Autonomy Framework in Rust},
year = {2024},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/makeecat/peng}},
}