Merge branch 'pince'

This commit is contained in:
Antoine PerreaultE
2025-02-26 18:02:25 -05:00
3 changed files with 57 additions and 26 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.

View File

@ -15,7 +15,7 @@ public class reset extends Command {
/** Creates a new reset. */
private Elevateur elevateur;
private Pince pince;
public reset(Elevateur elevateur, Pince pince) {
public reset(Elevateur elevateur) {
// Use addRequirements() here to declare subsystem dependencies.
this.elevateur = elevateur;
this.pince = pince;