Team138Entropy / Entropy2022

FIRST Robotics Team Entropy 138's code for the 2022 season
Other
3 stars 0 forks source link
frc java wpilib wpilibj

Entropy 2022

GitHub top language WPILib License GitHub contributors GitHub commit activity GitHub issues GitHub pull requests GitHub followers

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

Meta

Find issues & PRs without a project Find issues & PRs without a label Find open issues & PRs without comments

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 update-hooks.sh 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.