Add code base
[3501/roboRIO-code-base] / src / org / usfirst / frc / team3501 / robot / OI.java
diff --git a/src/org/usfirst/frc/team3501/robot/OI.java b/src/org/usfirst/frc/team3501/robot/OI.java
new file mode 100644 (file)
index 0000000..997be71
--- /dev/null
@@ -0,0 +1,14 @@
+package org.usfirst.frc.team3501.robot;
+
+import edu.wpi.first.wpilibj.Joystick;
+
+public class OI {
+  public static Joystick leftJoystick;
+  public static Joystick rightJoystick;
+
+  public OI() {
+    leftJoystick = new Joystick(Constants.OI.LEFT_STICK_PORT);
+    rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT);
+
+  }
+}