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

public class Control {
	double lDrive1 = 0,
	       lDrive2 = 0,
	       rDrive1 = 0,
	       rDrive2 = 0,
	       fBall   = 0,
	       bBall   = 0,
	       arm     = 0,
	camRotate = 0,
	camTilt = 0;
	boolean PCM = false;
	public Control() {}
}