Merge branch 'main' of https://demerso.net/pls5618/2023/robot
This commit is contained in:
		| @@ -4,11 +4,53 @@ | ||||
|  | ||||
| package frc.robot; | ||||
|  | ||||
| import edu.wpi.first.wpilibj.XboxController; | ||||
| import edu.wpi.first.wpilibj2.command.Command; | ||||
| import edu.wpi.first.wpilibj2.command.Commands; | ||||
| //subsystems | ||||
| import frc.robot.subsystems.BasePilotable; | ||||
| import frc.robot.subsystems.Gratte; | ||||
| import frc.robot.subsystems.bras.BrasTelescopique; | ||||
| import frc.robot.subsystems.bras.Pince; | ||||
| import frc.robot.subsystems.bras.Pivot; | ||||
| import frc.robot.subsystems.Limelight; | ||||
| // command | ||||
| import frc.robot.commands.BrakeFerme; | ||||
| import frc.robot.commands.BrakeOuvre; | ||||
| import frc.robot.commands.GratteBaisser; | ||||
| import frc.robot.commands.GratteMonte; | ||||
| import frc.robot.commands.Gyro; | ||||
| import frc.robot.commands.bras.FermePince; | ||||
| import frc.robot.commands.bras.OuvrePince; | ||||
| import frc.robot.commands.bras.PivotBrasRentre; | ||||
| import frc.robot.commands.bras.PivoteBrasBas; | ||||
| 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(); | ||||
|   } | ||||
|  | ||||
|   | ||||
| @@ -1,32 +0,0 @@ | ||||
| // Copyright (c) FIRST and other WPILib contributors. | ||||
| // Open Source Software; you can modify and/or share it under the terms of | ||||
| // the WPILib BSD license file in the root directory of this project. | ||||
|  | ||||
| package frc.robot.commands; | ||||
|  | ||||
| import edu.wpi.first.wpilibj2.command.CommandBase; | ||||
|  | ||||
| public class limelight extends CommandBase { | ||||
|   /** Creates a new limelight. */ | ||||
|   public limelight() { | ||||
|     // Use addRequirements() here to declare subsystem dependencies. | ||||
|   } | ||||
|  | ||||
|   // Called when the command is initially scheduled. | ||||
|   @Override | ||||
|   public void initialize() {} | ||||
|  | ||||
|   // Called every time the scheduler runs while the command is scheduled. | ||||
|   @Override | ||||
|   public void execute() {} | ||||
|  | ||||
|   // Called once the command ends or is interrupted. | ||||
|   @Override | ||||
|   public void end(boolean interrupted) {} | ||||
|  | ||||
|   // Returns true when the command should end. | ||||
|   @Override | ||||
|   public boolean isFinished() { | ||||
|     return false; | ||||
|   } | ||||
| } | ||||
| @@ -4,11 +4,39 @@ | ||||
|  | ||||
| package frc.robot.subsystems; | ||||
|  | ||||
| import org.photonvision.PhotonCamera; | ||||
| import org.photonvision.common.hardware.VisionLEDMode; | ||||
|  | ||||
| import edu.wpi.first.net.PortForwarder; | ||||
| import edu.wpi.first.wpilibj2.command.SubsystemBase; | ||||
|  | ||||
|  | ||||
| public class Limelight extends SubsystemBase { | ||||
|   PhotonCamera limelight = new PhotonCamera("limelight"); | ||||
|   /** Creates a new Limelight. */ | ||||
|   public Limelight() {} | ||||
|   public Limelight() { | ||||
|     PortForwarder.add(5800, "photonvision.local", 5800); | ||||
|   } | ||||
|  | ||||
|   public void cube()  { | ||||
|     limelight.setLED(VisionLEDMode.kOff); | ||||
|     limelight.setPipelineIndex(3); | ||||
|   } | ||||
|  | ||||
|   public void cone() { | ||||
|     limelight.setLED(VisionLEDMode.kOff); | ||||
|     limelight.setPipelineIndex(2); | ||||
|   } | ||||
|  | ||||
|   public void apriltag() { | ||||
|     limelight.setLED(VisionLEDMode.kOff); | ||||
|     limelight.setPipelineIndex(0); | ||||
|   } | ||||
|  | ||||
|   public void tape() { | ||||
|     limelight.setLED(VisionLEDMode.kOn); | ||||
|     limelight.setPipelineIndex(1); | ||||
|   } | ||||
|  | ||||
|   @Override | ||||
|   public void periodic() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user