mode oppose fait
This commit is contained in:
@@ -12,6 +12,7 @@ import frc.robot.commands.Aspirer;
|
||||
import frc.robot.commands.DescendreBalyeuse;
|
||||
import frc.robot.commands.DescendreGrimpeur;
|
||||
import frc.robot.commands.Lancer;
|
||||
import frc.robot.commands.ModeOposer;
|
||||
import frc.robot.commands.MonterBalyeuse;
|
||||
import frc.robot.commands.MonterGrimpeur;
|
||||
import frc.robot.subsystems.Balayeuse;
|
||||
@@ -34,6 +35,7 @@ public class RobotContainer {
|
||||
|
||||
private void configureBindings() {
|
||||
manette.a().whileTrue(new Lancer(lanceur,limeLight3,balayeuse,led));
|
||||
manette.y().whileTrue(new ModeOposer(lanceur, balayeuse));
|
||||
manette.rightTrigger().whileTrue(new MonterGrimpeur(grimpeur));
|
||||
manette.leftTrigger().whileTrue(new DescendreGrimpeur(grimpeur));
|
||||
manette.rightBumper().whileTrue(new MonterBalyeuse(balayeuse));
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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.
|
||||
@@ -9,7 +9,6 @@ import com.revrobotics.spark.SparkMax;
|
||||
import com.revrobotics.spark.SparkLowLevel.MotorType;
|
||||
|
||||
import edu.wpi.first.networktables.GenericEntry;
|
||||
import edu.wpi.first.units.measure.Time;
|
||||
import edu.wpi.first.wpilibj.DigitalInput;
|
||||
import edu.wpi.first.wpilibj.Timer;
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
|
||||
@@ -4,8 +4,6 @@
|
||||
|
||||
package frc.robot.subsystems;
|
||||
|
||||
import java.util.Optional;
|
||||
|
||||
import com.ctre.phoenix.led.CANdle;
|
||||
import com.ctre.phoenix.led.RainbowAnimation;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user