Skip to content

Commit

Permalink
add: main-modify
Browse files Browse the repository at this point in the history
把main-modify裡面有關Ramp 的程式刪掉刪掉
  • Loading branch information
Jay222-code committed Feb 5, 2025
1 parent 0f5439c commit 57ee600
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 43 deletions.
5 changes: 1 addition & 4 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,23 @@
import frc.robot.subsystems.AlgaeIntakeSubsystem;
import frc.robot.subsystems.ClimberSubsystem;
import frc.robot.subsystems.CoralShooterSubsystem;
import frc.robot.subsystems.RampSubsystem;


public class RobotContainer {
private final ClimberSubsystem climberSubsystem;
private final RampSubsystem rampSubsystem;
private final AlgaeIntakeSubsystem algaeIntakeSubsystem;
private final CoralShooterSubsystem coralShooterSubsystem;
private final SendableChooser<Command> autChooser;

public RobotContainer() {
coralShooterSubsystem = new CoralShooterSubsystem();
climberSubsystem = new ClimberSubsystem();
rampSubsystem = new RampSubsystem();
algaeIntakeSubsystem = new AlgaeIntakeSubsystem();
autChooser = AutoBuilder.buildAutoChooser();
autChooser.setDefaultOption("DoNothing", Commands.none());
SmartDashboard.putData("CoralShooterSubsystem", coralShooterSubsystem);
SmartDashboard.putData("AutoChooser", autChooser);
SmartDashboard.putData("AlgaeIntakeSubsystem", algaeIntakeSubsystem);
SmartDashboard.putData("RampSubsystem", rampSubsystem);
SmartDashboard.putData("ClimberSubsystem", climberSubsystem);

configureBindings();
Expand Down
39 changes: 0 additions & 39 deletions src/main/java/frc/robot/subsystems/RampSubsystem.java

This file was deleted.

0 comments on commit 57ee600

Please sign in to comment.