mode oppose fait

This commit is contained in:
Samuel
2026-02-24 18:55:48 -05:00
parent 813a0976ad
commit b9cac9ee36
5 changed files with 10 additions and 27 deletions

View File

@@ -29,7 +29,7 @@ public class Lancer extends Command {
this.led = led;
this.timer = new Timer();
this.limeLight3G = new Limelight3G();
addRequirements(lanceur);
addRequirements(lanceur, balayeuse, led, limeLight3G);
this.temp = 0;
// Use addRequirements() here to declare subsystem dependencies.
}
@@ -62,6 +62,7 @@ public class Lancer extends Command {
if(moyenneAmp > 30 && nbFois > 10){
timer.reset();
balayeuse.Balayer(0.5);
led.Jaune2();
}
else{
double vitesse = (100-limeLight3G.getTA())/lanceur.Vitesse();

View File

@@ -4,43 +4,24 @@
package frc.robot.commands;
import edu.wpi.first.math.controller.PIDController;
import edu.wpi.first.wpilibj.Timer;
import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Balayeuse;
import frc.robot.subsystems.Lanceur;
import frc.robot.subsystems.Led;
import frc.robot.subsystems.LimeLight3;
import frc.robot.subsystems.Limelight3G;
/* 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 */
public class LancerOposer extends Command {
public class ModeOposer extends Command {
private Lanceur lanceur;
private PIDController pidController;
private Limelight3G limeLight3G;
private Timer timer;
private Balayeuse balayeuse;
private Led led;
private double temp;
/** Creates a new Lancer. */
public LancerOposer(Lanceur lanceur, LimeLight3 limeLight3, Balayeuse balayeuse,Led led) {
public ModeOposer(Lanceur lanceur, Balayeuse balayeuse) {
this.lanceur = lanceur;
this.balayeuse = balayeuse;
this.led = led;
this.timer = new Timer();
this.limeLight3G = new Limelight3G();
addRequirements(lanceur);
this.temp = 0;
addRequirements(lanceur ,balayeuse);
// Use addRequirements() here to declare subsystem dependencies.
}
// Called when the command is initially scheduled.
@Override
public void initialize() {
pidController = new PIDController(0, 0,0, 0);
timer.reset();
timer.start();
temp = lanceur.Amp();
public void initialize() {
}
// Called every time the scheduler runs while the command is scheduled.
@@ -48,6 +29,7 @@ public class LancerOposer extends Command {
public void execute() {
lanceur.Lancer(-0.2);
lanceur.Demeler(-0.2);
balayeuse.Balayer(-0.2);
}
// Called once the command ends or is interrupted.
@@ -55,6 +37,7 @@ public class LancerOposer extends Command {
public void end(boolean interrupted) {
lanceur.Demeler(0);
lanceur.Lancer(0);
balayeuse.Balayer(0);
}
// Returns true when the command should end.