]> git.taranathan.com Git - FRC2026.git/commitdiff
Update RobotContainer.java
authormixxlto <maxtan0626@gmail.com>
Tue, 10 Feb 2026 00:03:46 +0000 (16:03 -0800)
committermixxlto <maxtan0626@gmail.com>
Tue, 10 Feb 2026 00:03:46 +0000 (16:03 -0800)
src/main/java/frc/robot/RobotContainer.java

index 54926c3f639abcd9e26c2efe1e0d19485527d88c..f60e7dc0d59ac2f0bbe32c5b1e1baa5de307513f 100644 (file)
@@ -32,8 +32,10 @@ import frc.robot.subsystems.climb.Climb;
 import frc.robot.subsystems.drivetrain.Drivetrain;
 import frc.robot.subsystems.drivetrain.GyroIOPigeon2;
 import frc.robot.subsystems.shooter.Shooter;
+import frc.robot.subsystems.spindexer.Spindexer;
 import frc.robot.subsystems.turret.Turret;
 import frc.robot.subsystems.hood.Hood;
+import frc.robot.subsystems.intake.Intake;
 import frc.robot.util.PathGroupLoader;
 import frc.robot.util.Vision.DetectedObject;
 import frc.robot.util.Vision.Vision;
@@ -55,6 +57,9 @@ public class RobotContainer {
   private Shooter shooter = null;
   private Hood hood = null;
   private Climb climb = null;
+  private Intake intake = null;
+  private Spindexer spindexer = null;
+
   private Command auto = new DoNothing();
 
   // Controllers are defined here