import frc.robot.commands.LogCommand;
import frc.robot.commands.auto_comm.DynamicAutoBuilder;
import frc.robot.commands.drive_comm.DefaultDriveCommand;
+import frc.robot.commands.drive_comm.SysIDDriveCommand;
import frc.robot.commands.gpm.IntakeMovementCommand;
import frc.robot.commands.gpm.LockedShoot;
import frc.robot.commands.gpm.RunSpindexer;
}
if (drive != null && driver != null) {
- drive.setDefaultCommand(new DefaultDriveCommand(drive, driver));
+ // drive.setDefaultCommand(new DefaultDriveCommand(drive, driver));
+ SmartDashboard.putData("SysId Characterization", new SysIDDriveCommand(drive));
}
break;
}
import edu.wpi.first.wpilibj2.command.CommandScheduler;
import edu.wpi.first.wpilibj2.command.InstantCommand;
import frc.robot.Robot;
+import frc.robot.commands.drive_comm.SysIDDriveCommand;
import frc.robot.commands.gpm.IntakeMovementCommand;
import frc.robot.commands.gpm.ReverseMotors;
import frc.robot.commands.gpm.RunSpindexer;