From 1200cb0b483f4e9bb38ba5f20f880cec3e949018 Mon Sep 17 00:00:00 2001 From: Antoine PerreaultE Date: Wed, 23 Nov 2022 18:40:33 -0500 Subject: [PATCH] D --- src/main/java/frc/robot/RobotContainer.java | 12 ++++--- src/main/java/frc/robot/commands/BoutonY.java | 32 +++++++++++++++++++ 2 files changed, 39 insertions(+), 5 deletions(-) create mode 100644 src/main/java/frc/robot/commands/BoutonY.java diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index d947f14..83ea5a4 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -8,7 +8,7 @@ import edu.wpi.first.math.estimator.KalmanFilter; import edu.wpi.first.wpilibj.GenericHID; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.XboxController; - +import edu.wpi.first.wpilibj.XboxController.Button; import edu.wpi.first.wpilibj2.command.Command; import edu.wpi.first.wpilibj2.command.RunCommand; import edu.wpi.first.wpilibj2.command.button.JoystickButton; @@ -51,10 +51,12 @@ public class RobotContainer { * edu.wpi.first.wpilibj2.command.button.JoystickButton}. */ private void configureButtonBindings() { - - - - + JoystickButton buttonA = new JoystickButton(manette, XboxController.Button.kA.value); + buttonA.whileHeld(Poussoir); + JoystickButton rightbumper = new JoystickButton(manette, XboxController.Button.kLeftBumper.value); + rightbumper.whileHeld(Pistonshaker); + JoystickButton buttonY = new JoystickButton(manette, XboxController.Button.kY.value); + buttonY.whenPressed(DesactiverBlockeur, ActiverBlockeur); } diff --git a/src/main/java/frc/robot/commands/BoutonY.java b/src/main/java/frc/robot/commands/BoutonY.java new file mode 100644 index 0000000..884458b --- /dev/null +++ b/src/main/java/frc/robot/commands/BoutonY.java @@ -0,0 +1,32 @@ +// 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.commands; + +import edu.wpi.first.wpilibj2.command.CommandBase; + +public class boutonY extends CommandBase { + /** Creates a new boutonY. */ + public boutonY() { + // Use addRequirements() here to declare subsystem dependencies. + } + + // Called when the command is initially scheduled. + @Override + public void initialize() {} + + // Called every time the scheduler runs while the command is scheduled. + @Override + public void execute() {} + + // Called once the command ends or is interrupted. + @Override + public void end(boolean interrupted) {} + + // Returns true when the command should end. + @Override + public boolean isFinished() { + return false; + } +}