Create toggle gear button and intialize it in constuctor
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / OI.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot;
2
7935bf26
AD
3import org.usfirst.frc.team3501.robot.commands.driving.ToggleGear;
4
38a404b3 5import edu.wpi.first.wpilibj.Joystick;
de8c65d3
SG
6import edu.wpi.first.wpilibj.buttons.Button;
7import edu.wpi.first.wpilibj.buttons.JoystickButton;
38a404b3
KZ
8
9public class OI {
cca02549 10 private static OI oi;
38a404b3
KZ
11 public static Joystick leftJoystick;
12 public static Joystick rightJoystick;
83fa645c 13 public static Button toggleWinch;
38a404b3 14
2291f7b3 15 public static Button toggleIndexWheel;
16 public static Button toggleFlyWheel;
17
7935bf26
AD
18 public static Button toggleGear;
19
38a404b3
KZ
20 public OI() {
21 leftJoystick = new Joystick(Constants.OI.LEFT_STICK_PORT);
22 rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT);
de8c65d3
SG
23 toggleWinch = new JoystickButton(leftJoystick,
24 Constants.OI.TOGGLE_WINCH_PORT);
2291f7b3 25 toggleIndexWheel = new JoystickButton(leftJoystick,
26 Constants.OI.TOGGLE_INDEXWHEEL_PORT);
27 toggleFlyWheel = new JoystickButton(leftJoystick,
28 Constants.OI.TOGGLE_FLYWHEEL_PORT);
7935bf26
AD
29 toggleGear = new JoystickButton(leftJoystick,
30 Constants.OI.TOGGLE_GEAR_PORT);
31 toggleGear.whenPressed(new ToggleGear());
38a404b3 32 }
cf086549
SG
33
34 public static OI getOI() {
35 if (oi == null)
36 oi = new OI();
37 return oi;
cca02549 38 }
38a404b3 39}