manipulator retract in controls
This commit is contained in:
parent
92206fa252
commit
e0d0a121ba
@ -143,7 +143,7 @@ public class RobotContainer {
|
|||||||
);
|
);
|
||||||
|
|
||||||
driver.leftTrigger().whileTrue(
|
driver.leftTrigger().whileTrue(
|
||||||
manipulator.runUntilCollected(() -> 0.75)
|
manipulator.runUntilCollected(() -> 0.75).andThen(manipulator.retractCommand(() -> 0.25))
|
||||||
);
|
);
|
||||||
|
|
||||||
driver.start().and(driver.back()).onTrue(
|
driver.start().and(driver.back()).onTrue(
|
||||||
|
@ -74,9 +74,9 @@ public class Manipulator extends SubsystemBase {
|
|||||||
}).until(() -> !coralBeamBreak.get());
|
}).until(() -> !coralBeamBreak.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
public Command retractCommand(DoubleSupplier speed){
|
public Command retractCommand(DoubleSupplier retractSpeed){
|
||||||
return run(() -> {
|
return run(() -> {
|
||||||
manipulatorMotor.set(-speed.getAsDouble());
|
manipulatorMotor.set(-retractSpeed.getAsDouble());
|
||||||
}
|
}
|
||||||
).until(() -> coralBeamBreak.get());
|
).until(() -> coralBeamBreak.get());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user