A comprehensive FRC robot skeleton for Team 7157 (Mubotics), based on Team 254's 2025 codebase, updated for WPILib 2026.
- Swerve Drive with CTRE Phoenix 6 (v26)
- AdvantageKit integration for logging and replay
- PhotonVision support for vision processing
- PathPlanner integration for autonomous path following
- MapleSim simulation support
src/main/java/
├── frc/robot/ # Main robot code
│ ├── subsystems/ # Robot subsystems
│ ├── commands/ # Command classes
│ ├── controlboard/ # Driver controls
│ ├── auto/ # Autonomous routines
│ └── lib/ # Utility libraries
│ ├── drivers/
│ ├── util/
│ ├── subsystems/
│ └── ...
│
└── com/team254/lib/pathplanner/ # PathPlanner library (from 254)
- WPILib 2026.2.1
- Phoenix 6 (v26.1.0)
- AdvantageKit (v26.0.0)
- PathPlannerLib (2026.1.2)
- PhotonLib (v2026.1.1-rc-3)
- MapleSim
- Clone this repository
- Open in VS Code with WPILib extension
- Update team number in
.wpilib/wpilib_preferences.json - Build with
./gradlew build - Deploy with
./gradlew deploy
Run simulation with:
./gradlew simulateJavaFor replay mode:
./gradlew simulateJavaRelease -Preplay