Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
BaronClaps committed Sep 25, 2024
2 parents 9b12cd8 + dc9743f commit b15ba2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public LiftSubsystem(HardwareMap hardwareMap, Telemetry telemetry) {
this.telemetry = telemetry;
this.telemetry = new MultipleTelemetry(telemetry, FtcDashboard.getInstance().getTelemetry());
lift = hardwareMap.get(DcMotor.class, "lift");
lift.setDirection(DcMotor.Direction.REVERSE);
lift.setMode(DcMotor.RunMode.RUN_WITHOUT_ENCODER);
lift.setZeroPowerBehavior(DcMotor.ZeroPowerBehavior.BRAKE);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ public class RobotConstants {
public static double intakeSpinOutPwr = -0.25;
public static double intakeSpinStopPwr = 0;
public static double intakePivotTransferPos= 0.965;
public static double intakePivotGroundPos = 0.57;
public static double boxTransferPos= 0.9;
public static double intakePivotGroundPos = 0.4;
public static double boxTransferPos= 0.95;
public static double boxScoringPos = 0.5;
public static int liftZeroPos = 0;
public static int liftToHumanPlayerPos = 750;
Expand Down
2 changes: 1 addition & 1 deletion TeamCode/src/main/java/indubitables/opmode/PID_Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class PID_Test extends OpMode {
public void init() {
liftPID = new PIDController(p, i, d);
telemetry = new MultipleTelemetry(telemetry, FtcDashboard.getInstance().getTelemetry());
lift = hardwareMap.get(DcMotor.class, "extend");
lift = hardwareMap.get(DcMotor.class, "lift");
lift.setDirection(DcMotorSimple.Direction.REVERSE);
}

Expand Down
4 changes: 0 additions & 4 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ android {
}
}

aaptOptions {
noCompress "tflite"
}

defaultConfig {
signingConfig signingConfigs.debug
applicationId 'com.qualcomm.ftcrobotcontroller'
Expand Down

0 comments on commit b15ba2f

Please sign in to comment.