2023-01-16 18:10:02 -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;
|
|
|
|
|
|
|
|
import edu.wpi.first.wpilibj2.command.Command;
|
|
|
|
import edu.wpi.first.wpilibj2.command.Commands;
|
2023-02-15 18:03:47 -05:00
|
|
|
import frc.robot.subsystems.BasePilotable;
|
|
|
|
import frc.robot.subsystems.Gratte;
|
|
|
|
import frc.robot.commands.limelight;
|
|
|
|
import frc.robot.subsystems.bras.BrasTelescopique;
|
|
|
|
import frc.robot.subsystems.bras.Pince;
|
|
|
|
import frc.robot.subsystems.bras.Pivot;
|
|
|
|
import frc.robot.commands.BrakeFerme;
|
|
|
|
import frc.robot.commands.BrakeOuvre;
|
|
|
|
import frc.robot.commands.GratteBaisser;
|
|
|
|
import frc.robot.commands.GratteMonte;
|
|
|
|
import frc.robot.commands.Gyro;
|
|
|
|
import frc.robot.commands.bras.FermePince;
|
|
|
|
import frc.robot.commands.bras.OuvrePince;
|
|
|
|
import frc.robot.commands.bras.PivotBrasRentre;
|
|
|
|
import frc.robot.commands.bras.PivoteBrasBas;
|
|
|
|
import frc.robot.commands.bras.PivoteBrasHaut;
|
|
|
|
import frc.robot.commands.bras.PivoteBrasMilieux;
|
|
|
|
|
|
|
|
|
2023-01-16 18:10:02 -05:00
|
|
|
|
|
|
|
public class RobotContainer {
|
|
|
|
public RobotContainer() {
|
|
|
|
configureBindings();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void configureBindings() {}
|
|
|
|
|
|
|
|
public Command getAutonomousCommand() {
|
|
|
|
return Commands.print("No autonomous command configured");
|
|
|
|
}
|
|
|
|
}
|