Class JoystickButton
java.lang.Object
edu.wpi.first.wpilibj2.command.button.Trigger
edu.wpi.first.wpilibj2.command.button.Button
edu.wpi.first.wpilibj2.command.button.JoystickButton
- All Implemented Interfaces:
BooleanSupplier
public class JoystickButton extends Button
-
Constructor Summary
Constructors Constructor Description JoystickButton(GenericHID joystick, int buttonNumber)
Creates a joystick button for triggering commands. -
Method Summary
Methods inherited from class edu.wpi.first.wpilibj2.command.button.Button
cancelWhenPressed, toggleWhenPressed, whenHeld, whenPressed, whenPressed, whenReleased, whenReleased, whileHeld, whileHeld
Methods inherited from class edu.wpi.first.wpilibj2.command.button.Trigger
and, cancelWhenActive, debounce, debounce, getAsBoolean, negate, onFalse, onTrue, or, toggleOnFalse, toggleOnTrue, toggleWhenActive, whenActive, whenActive, whenInactive, whenInactive, whileActiveContinuous, whileActiveContinuous, whileActiveOnce, whileFalse, whileTrue
-
Constructor Details
-
JoystickButton
Creates a joystick button for triggering commands.- Parameters:
joystick
- The GenericHID object that has the button (e.g. Joystick, KinectStick, etc)buttonNumber
- The button number (seeGenericHID.getRawButton(int)
-