summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2017/Control.java
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-02-21 01:59:48 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2017-02-21 01:59:48 -0500
commit178f9cf75f06969b9349dda8d4cb1c425b27ed6f (patch)
treec2a11c05ef552007460fe141fb24b6379900a9ca /src/org/usfirst/frc/team4272/robot2017/Control.java
parent9670a734f62f23c982c43697c074563eb2baf9c0 (diff)
Rename from robot2016 to robot2017
Diffstat (limited to 'src/org/usfirst/frc/team4272/robot2017/Control.java')
-rw-r--r--src/org/usfirst/frc/team4272/robot2017/Control.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/org/usfirst/frc/team4272/robot2017/Control.java b/src/org/usfirst/frc/team4272/robot2017/Control.java
new file mode 100644
index 0000000..0039c72
--- /dev/null
+++ b/src/org/usfirst/frc/team4272/robot2017/Control.java
@@ -0,0 +1,12 @@
+package org.usfirst.frc.team4272.robot2017;
+
+public class Control {
+ double lDrive = 0,
+ rDrive = 0,
+ camRotate = 0,
+ camTilt = 0,
+ climber = 0;
+ boolean highGear = false,
+ gedOut = false;
+ public Control() {}
+}