X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FOI.java;h=42a01369f5fae3ff15cfde14f648ad55fc2a3b9a;hb=93d8373fe56e8036848f7d092855cb0819702b50;hp=5082911be4703b6a55a674aad623f05b9507ab05;hpb=9ea6a533269dd1a8f9f684b3bbd90ae4b17478db;p=3501%2F2017steamworks diff --git a/src/org/usfirst/frc/team3501/robot/OI.java b/src/org/usfirst/frc/team3501/robot/OI.java index 5082911..42a0136 100644 --- a/src/org/usfirst/frc/team3501/robot/OI.java +++ b/src/org/usfirst/frc/team3501/robot/OI.java @@ -1,7 +1,6 @@ package org.usfirst.frc.team3501.robot; import org.usfirst.frc.team3501.robot.commands.accessories.ToggleCameraFeed; -import org.usfirst.frc.team3501.robot.commands.driving.ToggleGear; import edu.wpi.first.wpilibj.Joystick; import edu.wpi.first.wpilibj.buttons.Button; @@ -23,17 +22,16 @@ public class OI { public OI() { leftJoystick = new Joystick(Constants.OI.LEFT_STICK_PORT); rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT); - /*toggleWinch = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_WINCH_PORT); - toggleIndexWheel = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_INDEXWHEEL_PORT); - toggleFlyWheel = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_FLYWHEEL_PORT); - - toggleGear = new JoystickButton(leftJoystick, - Constants.OI.TOGGLE_GEAR_PORT); - toggleGear.whenPressed(new ToggleGear()); - */ + /* + * toggleWinch = new JoystickButton(leftJoystick, + * Constants.OI.TOGGLE_WINCH_PORT); toggleIndexWheel = new + * JoystickButton(leftJoystick, Constants.OI.TOGGLE_INDEXWHEEL_PORT); + * toggleFlyWheel = new JoystickButton(leftJoystick, + * Constants.OI.TOGGLE_FLYWHEEL_PORT); + * + * toggleGear = new JoystickButton(leftJoystick, + * Constants.OI.TOGGLE_GEAR_PORT); toggleGear.whenPressed(new ToggleGear()); + */ toggleCameraFeeds = new JoystickButton(leftJoystick, Constants.OI.TOGGLE_CAMERA_FEEDS);