Feed RobotDrive watchdog in RamseteCommand example (#2298)

This commit is contained in:
Oblarg
2020-01-23 20:41:45 -05:00
committed by Peter Johnson
parent 3ce01b5ac2
commit 1cee5ccb93
2 changed files with 3 additions and 1 deletions

View File

@@ -117,6 +117,7 @@ public class DriveSubsystem extends SubsystemBase {
public void tankDriveVolts(double leftVolts, double rightVolts) {
m_leftMotors.setVoltage(leftVolts);
m_rightMotors.setVoltage(-rightVolts);
m_drive.feed();
}
/**