summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robot2016/Control.java
blob: da706fcfad7f7b65dbfd0c48f86231ec6baff22e (plain)
1
2
3
4
5
6
7
8
9
10
public class Control {
        double lDrive = 0,
               rDrive = 0,
               camRotate = 0,
               camTilt = 0,
               climber = 0;
        boolean highGear = false,
                gedOut = false;
        public Control() {}
}