mirror of
https://github.com/Team4388/2023WayOfTheRobot.git
synced 2026-06-09 00:37:59 -06:00
FINAL BUTTONS
This commit is contained in:
@@ -288,7 +288,11 @@ public class RobotContainer {
|
|||||||
new JoystickButton(getDeadbandedOperatorController(), XboxController.Y_BUTTON) // final
|
new JoystickButton(getDeadbandedOperatorController(), XboxController.Y_BUTTON) // final
|
||||||
.onTrue(new InstantCommand(() -> m_robotArm.killSoftLimits()));
|
.onTrue(new InstantCommand(() -> m_robotArm.killSoftLimits()));
|
||||||
|
|
||||||
new JoystickButton(getDeadbandedOperatorController(), XboxController.RIGHT_BUMPER_BUTTON)
|
new JoystickButton(getDeadbandedOperatorController(), XboxController.LEFT_TRIGGER_AXIS) // final
|
||||||
|
.onTrue (new InstantCommand(() -> m_robotClaw.reversespinnyspin()))
|
||||||
|
.onFalse (new InstantCommand(() -> m_robotClaw.nospinnyspin()));
|
||||||
|
|
||||||
|
new JoystickButton(getDeadbandedOperatorController(), XboxController.RIGHT_TRIGGER_AXIS) // final
|
||||||
.onTrue (new InstantCommand(() -> m_robotClaw.yesspinnyspin()))
|
.onTrue (new InstantCommand(() -> m_robotClaw.yesspinnyspin()))
|
||||||
.onFalse (new InstantCommand(() -> m_robotClaw.nospinnyspin()));
|
.onFalse (new InstantCommand(() -> m_robotClaw.nospinnyspin()));
|
||||||
|
|
||||||
|
|||||||
@@ -58,4 +58,9 @@ public class Claw extends SubsystemBase {
|
|||||||
public void nospinnyspin() {
|
public void nospinnyspin() {
|
||||||
m_spinnyspin.set(0);
|
m_spinnyspin.set(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void reversespinnyspin() {
|
||||||
|
m_spinnyspin.set(-0.2);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user