Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import frc.robot.commands.deployer.RaiseDeployer;
import frc.robot.commands.drivetrain.ResetGyro;
import frc.robot.commands.drivetrain.WheelAlign;
import frc.robot.commands.ramp.RampMove;
import frc.robot.commands.ramp.ResetRamp;
import frc.robot.constants.Constants;
import frc.robot.utils.diag.Diagnostics;
Expand Down Expand Up @@ -75,6 +76,7 @@ public void teleopInit() {
autonomousCommand.cancel();
}
new RaiseDeployer(robotContainer.getDeployer()).schedule();
new RampMove(robotContainer.getRamp(), ()->0).schedule();
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/constants/Constants2023.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

public class Constants2023 extends GameConstants {

//Amp
//Amp

public static final int AMP_ID = 5;

//RAMP
public static final double RAMP_ERROR_RANGE = 0.00;
public static final double RAMP_POS = 0.0;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/constants/Constants2024.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@


public class Constants2024 extends GameConstants {
//AMP
//AMP
public static final int AMP_ID = 5;


//RAMP
public static final double RAMP_ERROR_RANGE = 0.00;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/constants/ConstantsTestbed.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class ConstantsTestbed extends GameConstants {
//AMP

public static final int AMP_ID = 5;

//RAMP
public static final double RAMP_ERROR_RANGE = 0.00;
public static final double RAMP_POS = 0.0;
Expand Down