/* 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 */
publicclassrequin_manuelextendsCommand{
/** Creates a new requin_manuel. */
privateRequinrequin;
privateDoubleSupplierx;
publicrequin_manuel(Requinrequin){
// Use addRequirements() here to declare subsystem dependencies.
this.requin=requin;
addRequirements(requin);
}
// Called when the command is initially scheduled.
@Override
publicvoidinitialize(){}
// Called every time the scheduler runs while the command is scheduled.