/Robot-Base

🤖 Kotlin + Meanlib base for FRC robots

Primary LanguageKotlinMIT LicenseMIT

Robot Base

Travis Coveralls

SERT's base robot code for Gradle and Kotlin.

Yearly Repository Setup

There are two ways to go about the yearly repository setup. You can either set it up manually, or make things easy on yourself and do it the automatic way.

Manual Setup

$ git clone --depth=1 https://github.com/SouthEugeneRoboticsTeam/Robot-Base.git GameName-Year
$ rm -rf !$/.git
$ git init
$ git remote add origin https://github.com/SouthEugeneRoboticsTeam/GameName-Year.git
$ git add .
$ git commit -m "Initial commit"
$ git push origin master

Things to Update

  1. Package name and actual package
  2. GradleRIO dependency

Automatic Setup

First, install the robot-maker CLI. Then, use the CLI to clone the repository and update packages and Gradle as needed!

$ robot-maker ./PowerUp-2018

Boom! You're done!