Skip to content
This repository was archived by the owner on Jun 22, 2023. It is now read-only.

HelixFollower

notmattlythgoe edited this page Nov 13, 2019 · 13 revisions

HelixFollower is a path following command used to follow paths generated by BobTrajectory using the FRC Java Command Structure.

Set up dependencies

  1. Add the following to your build.gradle, This allows you to pull the dependencies needed from a github repository:
   repositories {
      jcenter()
      maven { url "https://jitpack.io" }
   }
  1. Add these lines to the dependencies block:
    compile 'com.github.TripleHelixProgramming:HelixUtilities:master-SNAPSHOT'
    compile 'com.github.Team319:BobTrajectory:master-SNAPSHOT'

Clone this wiki locally