summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Control.java
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-01-30 13:15:22 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-01-30 13:15:22 -0500
commit26b916b43fdcafd9091e10564e68cc351beb9023 (patch)
tree2ec0dd3be68839f897b6b925bb2df8ae227f2357 /src/org/usfirst/frc/team4272/robot2016/Control.java
parent3a20b69a4fec4f13e5685f615b3e94d802720743 (diff)
stuff (from Adi's laptop)
Diffstat (limited to 'src/org/usfirst/frc/team4272/robot2016/Control.java')
-rw-r--r--src/org/usfirst/frc/team4272/robot2016/Control.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/usfirst/frc/team4272/robot2016/Control.java b/src/org/usfirst/frc/team4272/robot2016/Control.java
index b136e0c..d7eadf5 100644
--- a/src/org/usfirst/frc/team4272/robot2016/Control.java
+++ b/src/org/usfirst/frc/team4272/robot2016/Control.java
@@ -1,9 +1,9 @@
package org.usfirst.frc.team4272.robot2016;
public class Control {
- double lDrive, rDrive, fBall, bBall;
+ double lDrive, rDrive, fBall, bBall, arm;
public Control() {
- lDrive = rDrive = fBall = bBall = 0;
+ lDrive = rDrive = fBall = bBall = arm = 0;
}
}