]> git.taranathan.com Git - FRC2026.git/commitdiff
Merge branch 'main' into Linear-Climb
authoriefomit <timofei.stem@gmail.com>
Wed, 18 Feb 2026 18:49:59 +0000 (10:49 -0800)
committeriefomit <timofei.stem@gmail.com>
Wed, 18 Feb 2026 18:49:59 +0000 (10:49 -0800)
1  2 
src/main/java/frc/robot/RobotContainer.java
src/main/java/frc/robot/constants/IdConstants.java

index b3a7fb262ad270017ec6308d912a9b24f609a59f,b9478b69a69a06cf518af61d0d4d06256b01a250..8e0cce8df809fcb1c46229058f8473b2d7c2c100
@@@ -26,7 -26,7 +26,8 @@@ import frc.robot.constants.VisionConsta
  import frc.robot.controls.BaseDriverConfig;
  import frc.robot.controls.Operator;
  import frc.robot.controls.PS5ControllerDriverConfig;
 +import frc.robot.subsystems.Climb.LinearClimb;
+ import frc.robot.subsystems.Intake.Intake;
  import frc.robot.subsystems.drivetrain.Drivetrain;
  import frc.robot.subsystems.drivetrain.GyroIOPigeon2;
  import frc.robot.util.PathGroupLoader;
@@@ -51,7 -51,8 +52,8 @@@ public class RobotContainer 
    // Controllers are defined here
    private BaseDriverConfig driver = null;
    private Operator operator = null;
 +  private LinearClimb linearClimb = null;
+   private Intake intake = null;
  
    // Auto Command selection
    private final SendableChooser<Command> autoChooser = new SendableChooser<>();
          drive = new Drivetrain(vision, new GyroIOPigeon2());
          driver = new PS5ControllerDriverConfig(drive);
          operator = new Operator(drive);
 -        
+         // added indexer here for now
  
          // Detected objects need access to the drivetrain
          DetectedObject.setDrive(drive);
index 84e324882938d1d99a8bcffca17e2e13dca877f5,1685f3f6e7e09da9133d586160ac1683296af569..645f67f9a3efc8bac5a00d9b4774aa563c5d70a4
@@@ -19,6 -19,10 +19,13 @@@ public class IdConstants 
      // LEDs
      public static final int CANDLE_ID = 1;
  
-     public static final int CLIMB_MOTOR_ID = 8; 
 +    // Climb
 -    // roller motor CAN ID 
++    public static final int CLIMB_MOTOR_ID = 8;
++    
+     // Intake
+     // extender right and left motor CAN ID
+     public static final int RIGHT_MOTOR_ID = 1;
+     public static final int LEFT_MOTOR_ID = 2;
++    // roller motor CAN ID
+     public static final int ROLLER_MOTOR_ID = 3;
  }