asd
This commit is contained in:
parent
bd28fe35c8
commit
d3d21a76ba
@ -5,11 +5,16 @@
|
|||||||
package frc.robot.commands;
|
package frc.robot.commands;
|
||||||
|
|
||||||
import edu.wpi.first.wpilibj2.command.CommandBase;
|
import edu.wpi.first.wpilibj2.command.CommandBase;
|
||||||
|
import frc.robot.subsystems.Poussoir;
|
||||||
|
|
||||||
public class Activer_poussoir extends CommandBase {
|
public class Activer_poussoir extends CommandBase {
|
||||||
/** Creates a new Activer_poussoir. */
|
private Poussoir poussoir;
|
||||||
public Activer_poussoir() {
|
|
||||||
// Use addRequirements() here to declare subsystem dependencies.
|
public Activer_poussoir(Poussoir poussoir) {
|
||||||
|
this.poussoir = poussoir;
|
||||||
|
|
||||||
|
|
||||||
|
addRequirements(poussoir);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called when the command is initially scheduled.
|
// Called when the command is initially scheduled.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user