Skip to content

Installation

To install NextFTC in an FTC robot project, open TeamCode/build.gradle, and add the following to your dependencies block:

implementation 'dev.nextftc.v2:control:VERSION'
implementation 'dev.nextftc.v2:hardware:VERSION'
implementation 'dev.nextftc.v2:robot:VERSION'

Note that the control and hardware modules can be used on their own.

If you are using the hardware and/or robot modules, add the following to the repositories block to allow Gradle to find the necessary dependencies.

maven {
url 'https://repo.dairy.foundation/releases'
}