message
This commit is contained in:
		@@ -20,18 +20,6 @@ import edu.wpi.first.wpilibj.smartdashboard.SendableChooser;
 | 
			
		||||
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.Command;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.Commands;
 | 
			
		||||
<<<<<<< HEAD
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.button.CommandXboxController;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
public class RobotContainer {
 | 
			
		||||
 | 
			
		||||
    private final CommandXboxController manette1 = new CommandXboxController(0);
 | 
			
		||||
    private final CommandXboxController manette2 = new CommandXboxController(0);
 | 
			
		||||
    
 | 
			
		||||
    public RobotContainer() {
 | 
			
		||||
 | 
			
		||||
=======
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.ParallelCommandGroup;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.button.CommandXboxController;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction;
 | 
			
		||||
@@ -66,24 +54,12 @@ public class RobotContainer {
 | 
			
		||||
    public RobotContainer() {
 | 
			
		||||
        autoChooser = AutoBuilder.buildAutoChooser("New Auto");
 | 
			
		||||
        SmartDashboard.putData("Auto Mode", autoChooser);
 | 
			
		||||
>>>>>>> Swerve
 | 
			
		||||
        configureBindings();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private void configureBindings() {
 | 
			
		||||
        // Note that X is defined as forward according to WPILib convention,
 | 
			
		||||
        // and Y is defined as to the left according to WPILib convention.
 | 
			
		||||
<<<<<<< HEAD
 | 
			
		||||
 | 
			
		||||
        // Run SysId routines when holding back/start and X/Y.
 | 
			
		||||
        // Note that each routine should be run exactly once in a single log.
 | 
			
		||||
  
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public Command getAutonomousCommand() {
 | 
			
		||||
        return Commands.print("");
 | 
			
		||||
    }
 | 
			
		||||
=======
 | 
			
		||||
        drivetrain.setDefaultCommand(
 | 
			
		||||
            // Drivetrain will execute this command periodically
 | 
			
		||||
            drivetrain.applyRequest(() ->
 | 
			
		||||
@@ -114,5 +90,4 @@ public class RobotContainer {
 | 
			
		||||
                )
 | 
			
		||||
            );
 | 
			
		||||
         }
 | 
			
		||||
>>>>>>> Swerve
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user