zdgxfhml,;
This commit is contained in:
		@@ -4,6 +4,7 @@
 | 
			
		||||
 | 
			
		||||
package frc.robot;
 | 
			
		||||
 | 
			
		||||
import edu.wpi.first.wpilibj.XboxController;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.Command;
 | 
			
		||||
import edu.wpi.first.wpilibj2.command.Commands;
 | 
			
		||||
//subsystems
 | 
			
		||||
@@ -27,7 +28,29 @@ import frc.robot.commands.bras.PivoteBrasHaut;
 | 
			
		||||
import frc.robot.commands.bras.PivoteBrasMilieux;
 | 
			
		||||
 | 
			
		||||
public class RobotContainer {
 | 
			
		||||
  public RobotContainer() {
 | 
			
		||||
XboxController manette1 = new XboxController(0);
 | 
			
		||||
XboxController manette2 = new XboxController(1);
 | 
			
		||||
// subsystems
 | 
			
		||||
BasePilotable basePilotable = new BasePilotable();
 | 
			
		||||
Gratte gratte = new Gratte();
 | 
			
		||||
BrasTelescopique brasTelescopique = new BrasTelescopique();
 | 
			
		||||
Pince pince = new Pince();
 | 
			
		||||
Pivot pivot = new Pivot();
 | 
			
		||||
Limelight limelight = new Limelight();
 | 
			
		||||
//commands
 | 
			
		||||
BrakeFerme brakeFerme = new BrakeFerme(basePilotable);
 | 
			
		||||
BrakeOuvre brakeOuvre = new BrakeOuvre(basePilotable);
 | 
			
		||||
GratteBaisser gratteBaisser = new GratteBaisser(gratte);
 | 
			
		||||
GratteMonte gratteMonte = new GratteMonte(gratte);
 | 
			
		||||
Gyro gyro = new Gyro(basePilotable);
 | 
			
		||||
FermePince fermePince = new FermePince(pince);
 | 
			
		||||
OuvrePince ouvrePince = new OuvrePince(pince);
 | 
			
		||||
PivotBrasRentre pivotBrasRentre = new PivotBrasRentre(brasTelescopique, pivot);
 | 
			
		||||
PivoteBrasBas pivoteBrasBas = new PivoteBrasBas(brasTelescopique, pivot);
 | 
			
		||||
PivoteBrasMilieux pivoteBrasMilieux = new PivoteBrasMilieux(brasTelescopique, pivot);
 | 
			
		||||
PivoteBrasHaut pivoteBrasHaut = new PivoteBrasHaut(brasTelescopique, pivot);
 | 
			
		||||
 | 
			
		||||
public RobotContainer() {
 | 
			
		||||
    configureBindings();
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user