limit avec pince manuel

This commit is contained in:
Antoine PerreaultE
2025-02-26 17:26:31 -05:00
parent 9f83b61c46
commit e58cdf0b5b
2 changed files with 12 additions and 12 deletions

View File

@ -3,17 +3,19 @@
// the WPILib BSD license file in the root directory of this project.
package frc.robot.commands;
import java.util.function.DoubleSupplier;
import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Pince;
/* You should consider using the more terse Command factories API instead https://docs.wpilib.org/en/stable/docs/software/commandbased/organizing-command-based.html#defining-commands */
public class PinceManuel extends Command {
private Pince pince;
private DoubleSupplier x;
/** Creates a new PinceManuel. */
public PinceManuel(Pince pince
//, DoubleSupplier doubleSupplier
) {
public PinceManuel(Pince pince, DoubleSupplier x) {
this.pince = pince;
this.x = x;
//this.doubleSupplier = doubleSupplier;
addRequirements(pince);
// Use addRequirements() here to declare subsystem dependencies.
@ -26,12 +28,12 @@ public class PinceManuel extends Command {
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
// if(pince.position()){
// pince.pivote(0);
// }
// else{
pince.pivote(0.2);
// }
if(pince.position()){
pince.pivote(0);
}
else{
pince.pivote(x.getAsDouble());
}
}
// Called once the command ends or is interrupted.