// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
packagefrc.robot.command;
importedu.wpi.first.wpilibj2.command.Command;
importfrc.robot.subsystems.Elevateur;
/* 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 */
publicclassL4extendsCommand{
privateElevateurelevateur;
/** Creates a new L2. */
publicL4(Elevateurelevateur){
this.elevateur=elevateur;
addRequirements(elevateur);
// Use addRequirements() here to declare subsystem dependencies.
}
// Called when the command is initially scheduled.
@Override
publicvoidinitialize(){}
// Called every time the scheduler runs while the command is scheduled.