Improve Climber Code

This commit is contained in:
Keenan D. Buckley
2020-03-06 16:42:53 -07:00
parent d480494910
commit 8113ce1a08
6 changed files with 88 additions and 6 deletions
@@ -36,7 +36,7 @@ public class RunLevelerWithJoystick extends CommandBase {
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
double input = m_controller.getLeftXAxis();
double input = m_controller.getRightXAxis();
m_leveler.runLeveler(input);
}