2024-01-17 19:19:54 -05:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
package frc.robot;
|
|
|
|
|
2024-02-01 19:20:32 -05:00
|
|
|
import com.pathplanner.lib.auto.AutoBuilder;
|
|
|
|
import com.pathplanner.lib.auto.NamedCommands;
|
|
|
|
import com.pathplanner.lib.commands.PathPlannerAuto;
|
|
|
|
|
2024-01-23 18:41:48 -05:00
|
|
|
import edu.wpi.first.cameraserver.CameraServer;
|
|
|
|
import edu.wpi.first.math.MathUtil;
|
2024-02-01 19:20:32 -05:00
|
|
|
import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
|
2024-01-17 19:19:54 -05:00
|
|
|
import edu.wpi.first.wpilibj2.command.Command;
|
2024-01-23 18:41:48 -05:00
|
|
|
import edu.wpi.first.wpilibj2.command.RunCommand;
|
2024-02-01 17:25:01 -05:00
|
|
|
import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
|
2024-01-23 18:41:48 -05:00
|
|
|
// Manette
|
|
|
|
|
2024-01-30 19:54:07 -05:00
|
|
|
// Manettes
|
2024-01-23 18:41:48 -05:00
|
|
|
import edu.wpi.first.wpilibj2.command.button.CommandJoystick;
|
|
|
|
import edu.wpi.first.wpilibj2.command.button.CommandXboxController;
|
2024-02-06 18:17:08 -05:00
|
|
|
import frc.robot.command.AllumeLED;
|
2024-01-30 19:54:07 -05:00
|
|
|
// Commands
|
2024-01-30 19:52:21 -05:00
|
|
|
import frc.robot.command.Balayer;
|
2024-02-01 20:20:04 -05:00
|
|
|
import frc.robot.command.GrimpeurDroit;
|
|
|
|
import frc.robot.command.GrimpeurGauche;
|
2024-01-30 19:52:09 -05:00
|
|
|
import frc.robot.command.GuiderBas;
|
|
|
|
import frc.robot.command.GuiderHaut;
|
2024-02-01 19:20:32 -05:00
|
|
|
import frc.robot.command.Lancer;
|
|
|
|
import frc.robot.command.LancerNote;
|
|
|
|
import frc.robot.command.Lancerampli;
|
2024-01-30 19:54:07 -05:00
|
|
|
// Subsystems
|
2024-01-23 18:41:48 -05:00
|
|
|
import frc.robot.subsystem.Accumulateur;
|
|
|
|
import frc.robot.subsystem.Balayeuse;
|
|
|
|
import frc.robot.subsystem.Drive;
|
|
|
|
import frc.robot.subsystem.Grimpeur;
|
|
|
|
import frc.robot.subsystem.Guideur;
|
2024-02-06 18:17:08 -05:00
|
|
|
import frc.robot.subsystem.LED;
|
2024-01-23 18:41:48 -05:00
|
|
|
import frc.robot.subsystem.Lanceur;
|
2024-02-06 19:01:04 -05:00
|
|
|
import frc.robot.subsystem.Pixy;
|
2024-01-23 18:41:48 -05:00
|
|
|
|
2024-01-17 19:19:54 -05:00
|
|
|
|
|
|
|
public class RobotContainer {
|
2024-02-01 19:20:32 -05:00
|
|
|
private final SendableChooser<Command> autoChooser;
|
2024-01-23 18:41:48 -05:00
|
|
|
Drive drive = new Drive();
|
|
|
|
Accumulateur accumulateur = new Accumulateur();
|
|
|
|
Balayeuse balayeuse = new Balayeuse();
|
|
|
|
Grimpeur grimpeur = new Grimpeur();
|
|
|
|
Guideur guideur = new Guideur();
|
|
|
|
Lanceur lanceur = new Lanceur();
|
2024-01-30 19:52:21 -05:00
|
|
|
Balayer balayer = new Balayer(balayeuse, accumulateur);
|
2024-01-30 19:52:09 -05:00
|
|
|
GuiderHaut guiderHaut = new GuiderHaut(guideur);
|
|
|
|
GuiderBas guiderBas = new GuiderBas(guideur);
|
2024-02-05 19:15:56 -05:00
|
|
|
Lancer lancer = new Lancer(lanceur);
|
2024-02-01 19:20:32 -05:00
|
|
|
LancerNote lancernote = new LancerNote(lanceur, accumulateur);
|
|
|
|
Lancerampli lancerampli = new Lancerampli(lanceur);
|
2024-01-23 18:41:48 -05:00
|
|
|
CommandJoystick joystick = new CommandJoystick(0);
|
|
|
|
CommandXboxController manette = new CommandXboxController(1);
|
2024-02-05 19:14:59 -05:00
|
|
|
GrimpeurDroit grimpeurDroit = new GrimpeurDroit(grimpeur, manette::getLeftX);
|
|
|
|
GrimpeurGauche grimpeurGauche = new GrimpeurGauche(grimpeur, manette::getLeftY);
|
2024-02-06 18:17:08 -05:00
|
|
|
LED LED = new LED();
|
2024-02-06 18:31:05 -05:00
|
|
|
AllumeLED allumeLED = new AllumeLED(LED);
|
2024-02-06 19:01:04 -05:00
|
|
|
Pixy pixy = new Pixy();
|
2024-01-17 19:19:54 -05:00
|
|
|
public RobotContainer() {
|
2024-02-01 20:01:29 -05:00
|
|
|
NamedCommands.registerCommand("balayer",new Balayer(balayeuse, accumulateur));
|
|
|
|
NamedCommands.registerCommand("lancer", new LancerNote(lanceur, accumulateur));
|
2024-02-01 19:20:32 -05:00
|
|
|
autoChooser = AutoBuilder.buildAutoChooser();
|
2024-01-23 18:41:48 -05:00
|
|
|
|
|
|
|
CameraServer.startAutomaticCapture();
|
2024-02-05 20:24:04 -05:00
|
|
|
manette.a().whileTrue(guiderBas);
|
|
|
|
manette.b().whileTrue(guiderHaut);
|
|
|
|
joystick.button(3).toggleOnTrue(balayer);
|
2024-02-07 19:50:42 -05:00
|
|
|
joystick.button(1).whileTrue(lancernote);
|
2024-02-06 19:08:49 -05:00
|
|
|
|
2024-01-17 19:19:54 -05:00
|
|
|
configureBindings();
|
2024-01-23 18:41:48 -05:00
|
|
|
drive.setDefaultCommand(new RunCommand(()->{
|
|
|
|
drive.drive(-MathUtil.applyDeadband(joystick.getY(),0.2), MathUtil.applyDeadband(-joystick.getX(),0.2), MathUtil.applyDeadband(-joystick.getZ(), 0.2));
|
|
|
|
},drive));
|
2024-02-06 18:17:08 -05:00
|
|
|
grimpeur.setDefaultCommand(new RunCommand(()->{
|
|
|
|
grimpeur.droit(manette.getLeftX());}
|
|
|
|
,grimpeur));
|
|
|
|
LED.setDefaultCommand(allumeLED);
|
2024-01-17 19:19:54 -05:00
|
|
|
}
|
|
|
|
|
2024-01-25 20:05:20 -05:00
|
|
|
private void configureBindings() {
|
2024-02-01 20:20:04 -05:00
|
|
|
|
2024-01-25 20:05:20 -05:00
|
|
|
}
|
2024-01-17 19:19:54 -05:00
|
|
|
|
2024-02-01 19:33:02 -05:00
|
|
|
public Command getAutonomousCommand(){
|
2024-02-01 19:30:02 -05:00
|
|
|
return autoChooser.getSelected();
|
2024-01-17 19:19:54 -05:00
|
|
|
}
|
|
|
|
}
|