continue to flesh out initial codebase
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / DriveWithJoysticks.java
CommitLineData
b449387d
LH
1package org.usfirst.frc.team3501.robot.commands;
2
3public class DriveWithJoysticks extends CommandBase {
4
5 public DriveWithJoysticks() {
6 super("DriveWithJoysticks");
7 requires(drivetrain);
8 }
9
10 protected void execute() {
3e4790a8 11 drivetrain.drive(oi.getForward(), oi.getTwist());
b449387d
LH
12 }
13
14 protected boolean isFinished() {
15 return false;
16 }
17}