Skip to content

Commit

Permalink
Correct Acquirer
Browse files Browse the repository at this point in the history
  • Loading branch information
elc1798 committed Apr 2, 2016
1 parent 5a40381 commit 5bd6285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/edu/stuy/robot/subsystems/Acquirer.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ public void initDefaultCommand() {
}

public void acquire() {
acquirerMotor.set(1.0);
acquirerMotor.set(-1.0);
}

public void stop() {
acquirerMotor.set(0.0);
}

public void deacquire() {
acquirerMotor.set(-1.0);
acquirerMotor.set(1.0);
}
}

0 comments on commit 5bd6285

Please sign in to comment.