summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/HwOI.java
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-01-16 11:28:27 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-01-16 11:28:27 -0500
commit636cf0465605d9dd482e1fb75f8b81e509703403 (patch)
treec66f1bcebea21b6b5a79138c8779c0364ef4d576 /src/org/usfirst/frc/team4272/robot2016/HwOI.java
parentb655dbdba8532f31b13b410f2dfedbbb3775dba3 (diff)
rename to robot2016
Diffstat (limited to 'src/org/usfirst/frc/team4272/robot2016/HwOI.java')
-rw-r--r--src/org/usfirst/frc/team4272/robot2016/HwOI.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/org/usfirst/frc/team4272/robot2016/HwOI.java b/src/org/usfirst/frc/team4272/robot2016/HwOI.java
new file mode 100644
index 0000000..fc5cc78
--- /dev/null
+++ b/src/org/usfirst/frc/team4272/robot2016/HwOI.java
@@ -0,0 +1,11 @@
+package org.usfirst.frc.team4272.robot2016;
+
+import org.usfirst.frc.team4272.robotlib.Xbox360Controller;
+
+import edu.wpi.first.wpilibj.Joystick;
+
+public class HwOI {
+ public Joystick lStick = new Joystick(0);
+ public Joystick rStick = new Joystick(1);
+ public Xbox360Controller xbox = new Xbox360Controller(2);
+}