summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2017/Control.java
blob: 0039c7294e7a716f7842ddcfef365cd7df5adb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
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() {}
}