Skip to content

Commit 5d29f4d

Browse files
author
James Hagborg
committed
Fix Pressed vs. Released label
1 parent 1f70d1f commit 5d29f4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/usfirst/frc/team69/util/oi/ButtonData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public class ButtonData {
2323
*
2424
*/
2525
public enum Action {
26-
WHEN_PRESSED("R"),
27-
WHEN_RELEASED("P"),
26+
WHEN_PRESSED("P"),
27+
WHEN_RELEASED("R"),
2828
WHILE_HELD("H");
2929

3030
private final String m_desc;

0 commit comments

Comments
 (0)