Team138Entropy / Entropy2020

Team 138 FIRST Robotics Infinite Recharge 2020
4 stars 0 forks source link

Entropy 2020

This is a baseline of the 2020 Robotics Code. This code seeks to provide the team with a strong baseline entering the 2020 Build season. This readme highlights portions of the architecture, ideas, and best practices.

Code Formatting

We have a git hook that will format your code according to Google's style guide whenever you commit. To enable it, you will need to run update-hooks.bat on Windows or gradlew installGitHooks on Linux and macOS.

Architecture Highlights

Brainstorming Ideas

Concepts

Simulator

WPILib has simulator capability. We should utilize this simulator to simulate controller input early/motor output on the build season to iron out any glaring issues. https://docs.wpilib.org/en/latest/docs/software/wpilib-tools/robot-simulation/introduction.html

Code Housekeeping

We want our code to execute as efficiently as possible.