summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Control.java
blob: 40fcb5a454928e92d15b731be7bb745213bda0ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.usfirst.frc.team4272.robot2016;

public class Control {
	double lDrive1 = 0,
	       lDrive2 = 0,
	       rDrive1 = 0,
	       rDrive2 = 0,
	       fBall   = 0,
	       bBall   = 0,
	       arm     = 0;

	public Control() {}
}