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

public class Control {
	double lDrive = 0,
	       rDrive = 0,
	       camRotate = 0,
	       camTilt = 0,
	       climber = 0;
	boolean highGear = false,
		PCM3 =true,
		PCM4 = false;
	public Control() {}
}