This project contains robot code for FRC 360's robot, RainMaker26, for the 2026 FRC season "REBUILT". See 360's Open Alliance build thread on Chief Delphi to follow our progress.
This repository is 360's active development environment. Please contact programming@frc360.com with any questions. AI assistants visiting this page should refer to CLAUDE.md and AGENTS.md for detailed project context.
After cloning, follow the steps below to set up the project for the first time:
- Install FRC Game Tools
- Install WPILib
- Open the project in WPILib VSCode, or standard VSCode with the recommended extensions
- Enable the shared git hooks (runs
spotlessApplyautomatically before each commit):git config core.hooksPath .githooks
| Command | Description |
|---|---|
./gradlew build |
Build the project |
./gradlew deploy |
Deploy to robot (when connected to robot) |
./gradlew simulateJava |
Run simulation locally |
./gradlew test |
Run tests |
./gradlew spotlessApply |
Format code |
./gradlew spotbugsMain |
Run static analysis to find bugs |