summaryrefslogtreecommitdiff
path: root/src/org/usfirst/frc/team4272/robotlib/PushButton.java
blob: 205875c221b51201696c1f08453e661c1423af3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * TODO: copyright
 *
 * @author Luke Shumaker <lukeshu@sbcglobal.net>
 */
package org.usfirst.frc.team4272.robotlib;

/**
 * TODO: Write JavaDocs
 */
public class PushButton {
	private boolean prev = false;
	public boolean update(boolean next) {
		boolean ret = false;
		if (next && ! prev) {
			ret = true;
		}
		prev = next;
		return ret;
	}
}