X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FOI.java;h=c608b86b8d1767a8eeab2c2b268693ef6ce74d0e;hb=aec45ad9b8988b554695c3677b0dab0eac3d07f8;hp=c6b9f88215b049a73001ed1507bc654c9a1b6bf3;hpb=49c10054c2910eff19927455e4ab1f6aad8736ca;p=3501%2F2017steamworks diff --git a/src/org/usfirst/frc/team3501/robot/OI.java b/src/org/usfirst/frc/team3501/robot/OI.java index c6b9f88..c608b86 100644 --- a/src/org/usfirst/frc/team3501/robot/OI.java +++ b/src/org/usfirst/frc/team3501/robot/OI.java @@ -1,5 +1,15 @@ package org.usfirst.frc.team3501.robot; +import org.usfirst.frc.team3501.robot.commands.climber.ToggleWinch; +import org.usfirst.frc.team3501.robot.commands.driving.ToggleGear; +import org.usfirst.frc.team3501.robot.commands.intake.ReverseIntakeContinuous; +import org.usfirst.frc.team3501.robot.commands.intake.RunIntakeContinuous; +import org.usfirst.frc.team3501.robot.commands.shooter.DecreaseShootingSpeed; +import org.usfirst.frc.team3501.robot.commands.shooter.IncreaseShootingSpeed; +import org.usfirst.frc.team3501.robot.commands.shooter.ReverseIndexWheelContinuous; +import org.usfirst.frc.team3501.robot.commands.shooter.RunFlyWheelContinuous; +import org.usfirst.frc.team3501.robot.commands.shooter.RunIndexWheelContinuous; + import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.buttons.Button; import edu.wpi.first.wpilibj.buttons.JoystickButton; @@ -10,19 +20,56 @@ public class OI { public static Joystick rightJoystick; public static Button toggleWinch; - public static Button toggleIndexWheel; + public static Button runIndexWheel; + public static Button reverseIndexWheel; public static Button toggleFlyWheel; + public static Button toggleGear; + + public static Button runIntake; + public static Button reverseIntake; + + public static Button increaseShooterSpeed; + public static Button decreaseShooterSpeed; + public OI() { leftJoystick = new Joystick(Constants.OI.LEFT_STICK_PORT); rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT); + + runIndexWheel = new JoystickButton(rightJoystick, + Constants.OI.RUN_INDEXWHEEL_PORT); + runIndexWheel.whileHeld(new RunIndexWheelContinuous()); + + reverseIndexWheel = new JoystickButton(rightJoystick, + Constants.OI.REVERSE_INDEXWHEEL_PORT); + reverseIndexWheel.whileHeld(new ReverseIndexWheelContinuous()); + + toggleFlyWheel = new JoystickButton(rightJoystick, + Constants.OI.TOGGLE_FLYWHEEL_PORT); + toggleFlyWheel.toggleWhenPressed(new RunFlyWheelContinuous()); + + toggleGear = new JoystickButton(leftJoystick, + Constants.OI.TOGGLE_GEAR_PORT); + toggleGear.whenPressed(new ToggleGear()); + + runIntake = new JoystickButton(leftJoystick, Constants.OI.RUN_INTAKE_PORT); + runIntake.whileHeld(new RunIntakeContinuous()); + + reverseIntake = new JoystickButton(leftJoystick, + Constants.OI.REVERSE_INTAKE_PORT); + reverseIntake.whileHeld(new ReverseIntakeContinuous()); + toggleWinch = new JoystickButton(leftJoystick, Constants.OI.TOGGLE_WINCH_PORT); + toggleWinch.whenPressed(new ToggleWinch()); - toggleIndexWheel = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_INDEXWHEEL_PORT); - toggleFlyWheel = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_FLYWHEEL_PORT); + increaseShooterSpeed = new JoystickButton(leftJoystick, + Constants.OI.INCREASE_SHOOTER_SPEED_PORT); + increaseShooterSpeed.whenPressed(new IncreaseShootingSpeed()); + + decreaseShooterSpeed = new JoystickButton(leftJoystick, + Constants.OI.DECREASE_SHOOTER_SPEED_PORT); + decreaseShooterSpeed.whenPressed(new DecreaseShootingSpeed()); } public static OI getOI() {