This commit is contained in:
samuel desharnais 2023-03-20 18:55:53 -04:00
commit 569fbce96b
3 changed files with 12 additions and 6 deletions

View File

@ -88,8 +88,8 @@ public class RobotContainer {
Cube cube = new Cube(limelight, basePilotable, () -> manette1.getLeftY());
Apriltag aprilTag = new Apriltag(limelight, basePilotable, () -> manette1.getLeftY());
Tape tape = new Tape(limelight, basePilotable, () -> manette1.getLeftY());
PivotManuel pivotManuel = new PivotManuel(pivot, manette2::getLeftX);
BrasManuel brasManuel = new BrasManuel(brasTelescopique, manette2::getLeftY);
PivotManuel pivotManuel = new PivotManuel(pivot, manette1::getLeftY);
BrasManuel brasManuel = new BrasManuel(brasTelescopique, manette1::getLeftX);
public RobotContainer() {
chooser.addOption(enhaut, enhaut);

View File

@ -30,9 +30,11 @@ public class BrasManuel extends CommandBase {
@Override
public void execute() {
if(doubleSupplier.getAsDouble()>0.2 || doubleSupplier.getAsDouble()<-0.2){
brasTelescopique.AvanceRecule(doubleSupplier.getAsDouble());
brasTelescopique.AvanceRecule(doubleSupplier.getAsDouble()*0.5);
}
else{
brasTelescopique.AvanceRecule(0);
}
}
// Called once the command ends or is interrupted.

View File

@ -28,7 +28,11 @@ public class PivotManuel extends CommandBase {
@Override
public void execute() {
if(doubleSupplier.getAsDouble()>0.2 || doubleSupplier.getAsDouble()<-0.2){
pivot.monteDescendre(doubleSupplier.getAsDouble());}
pivot.monteDescendre(-doubleSupplier.getAsDouble()*0.5)
;}
else{
pivot.monteDescendre(0);
}
}
// Called once the command ends or is interrupted.