Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 1.5 KB

README.md

File metadata and controls

25 lines (19 loc) · 1.5 KB

Pure Pursuit Algorithm

Introduction

This repository is a Processing implementation of the Adaptive Pure Pursuit algorithm used to control FRC robots.

Controls and Features

The program features minimalistic path creation and following functionality:

  • Left click shows the lookahead line from the cursor to the nearest path line.
  • Right click creates new points on the path.
  • r resets the simulation.
  • n creates a new path follower that is moved by pressing.
    • f moves the follower towards the end of the path.
    • + increases the lookahead distance.
    • - decreases the lookahead distance.

The follower also leaves a dashed path behind and has a circle around its origin to visualise the lookahead distance.

Resources