summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2017/Control.java
diff options
context:
space:
mode:
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() {}
+}