5 Commits

Author SHA1 Message Date
6fb4e0c1ac w 2025-02-06 18:04:02 -05:00
9af46de189 oups 2025-02-06 18:03:36 -05:00
688315bcd0 Saaaaaaaaaam 2025-02-06 17:46:04 -05:00
bd180e9153 2025-01-29 19:35:45 -05:00
bff426ef0f v 2025-01-28 18:29:17 -05:00

View File

@ -6,15 +6,29 @@ package frc.robot;
import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.Commands;
import edu.wpi.first.wpilibj2.command.button.CommandXboxController;
public class RobotContainer {
private final CommandXboxController manette1 = new CommandXboxController(0);
private final CommandXboxController manette2 = new CommandXboxController(0);
public RobotContainer() {
configureBindings();
}
private void configureBindings() {}
private void configureBindings() {
// Note that X is defined as forward according to WPILib convention,
// and Y is defined as to the left according to WPILib convention.
// Run SysId routines when holding back/start and X/Y.
// Note that each routine should be run exactly once in a single log.
}
public Command getAutonomousCommand() {
return Commands.print("No autonomous command configured");
return Commands.print("");
}
}