Skip to content

Commit

Permalink
chore: Clean up arm rotate
Browse files Browse the repository at this point in the history
  • Loading branch information
msoucy committed Jun 27, 2024
1 parent 730f3c0 commit c95d01c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/frc/robot/subsystems/ArmRotate.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import com.chopshop166.chopshoplib.motors.Modifier;

import edu.wpi.first.math.controller.ProfiledPIDController;
import edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints;
import edu.wpi.first.math.trajectory.TrapezoidProfile.State;
import edu.wpi.first.units.Units;
import edu.wpi.first.wpilibj2.command.Command;
Expand All @@ -19,11 +18,7 @@

public class ArmRotate extends LoggedSubsystem<Data, ArmRotateMap> {

// Intake Position: 0 degrees <- base everything else off of it

final ProfiledPIDController pid;
// Set to zero until able to test
private boolean useAbsolute = true;
final double RAISE_SPEED = .85;
final double MANUAL_LOWER_SPEED_COEF = 0.5;
final double SLOW_DOWN_COEF = 0.5;
Expand All @@ -32,7 +27,6 @@ public class ArmRotate extends LoggedSubsystem<Data, ArmRotateMap> {
final double INTAKE_TOLERANCE = 4;
double holdAngle = 0;

private Constraints rotateConstraints = new Constraints(150, 200);
ArmPresets level = ArmPresets.OFF;

public ArmRotate(ArmRotateMap armRotateMap) {
Expand Down

0 comments on commit c95d01c

Please sign in to comment.