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

import edu.wpi.first.wpilibj.Relay;

public class Control {
	double lDrive, rDrive, winch;
	Relay.Value lIntake, rIntake;
	boolean grab, push;

	public Control() {
		lDrive = rDrive = winch = 0;
		grab = push = false;
		lIntake = rIntake = Relay.Value.kOff;
	}
}