This commit is contained in:
Antoine PerreaultE
2025-02-26 19:23:34 -05:00
3 changed files with 11 additions and 9 deletions

View File

@ -31,7 +31,7 @@ public class ElevateurManuel extends Command {
if(elevateur.limit2()==true){
elevateur.vitesse(0);
}
elevateur.vitesse(doubleSupplier.getAsDouble()/7);
elevateur.vitesse(doubleSupplier.getAsDouble()/3.5);
}
// Called once the command ends or is interrupted.

View File

@ -32,7 +32,7 @@ public class PinceManuel extends Command {
pince.pivote(0);
}
else{
pince.pivote(x.getAsDouble());
pince.pivote(x.getAsDouble()/3.5);
}
}