9432's robot code for the 2025 FRC season, REEFSCAPE.
-
robot/2025 robot code -
lib/2025 library code and utilities -
annotation/Kotlin version of AdvntageKit's @Autolog annotation
- Download & Install IntelliJ IDEA
- Download IntelliJ IDEA Community Edition from the official download page.
- Install open the downloaded exe and go through the installation process.
- Clone the repository
- Once IDEA is installed, Select
Get from VCSon the main page and type/copy inhttps://github.com/Team-8-bit/2025-REDACTEDfor Repository and select a directory to save the code. - Click
Cloneand wait for the repository to be opened.
- Once IDEA is installed, Select
- Run Simulation
- Once the repository is open, in the top right select
Simulate Robotand press the run button.
It Will take longer the first time you run the simulation as it will download all the necessary files.
- Once the repository is open, in the top right select
- Branches naming and utilization
main- The main branch, this is the branch that is used for the final code.develop- The development branch, this is the branch that is used for testing the code before it is merged into the main branch.feature/feature-name- The feature branch, this is the branch that is used for developing a specific feature.- if you are working on a something, create a new branch with the name
feature/feature-nameand once you are done with the feature, you can create a pull request to thedevelopbranch on GitHub.
