Merge branch 'master' of https://git.demerso.net/pls5618/2024/betabot-2024
This commit is contained in:
commit
5f64677db7
@ -36,7 +36,7 @@ public class RobotContainer {
|
|||||||
|
|
||||||
ShuffleboardTab dashboard = Shuffleboard.getTab("Dashboard");
|
ShuffleboardTab dashboard = Shuffleboard.getTab("Dashboard");
|
||||||
ShuffleboardLayout forces = Shuffleboard.getTab("Dashboard")
|
ShuffleboardLayout forces = Shuffleboard.getTab("Dashboard")
|
||||||
.getLayout("Dashboard", BuiltInLayouts.kList)
|
.getLayout("forces", BuiltInLayouts.kList)
|
||||||
.withSize(3, 7);
|
.withSize(3, 7);
|
||||||
GenericEntry force1 = forces.add("Force1", 2).getEntry();
|
GenericEntry force1 = forces.add("Force1", 2).getEntry();
|
||||||
GenericEntry force2 = forces.add("Force2", 0).getEntry();
|
GenericEntry force2 = forces.add("Force2", 0).getEntry();
|
||||||
@ -76,3 +76,5 @@ public class RobotContainer {
|
|||||||
, new Lancer(lanceur, accumulateur, force1), new Reculer(drive));
|
, new Lancer(lanceur, accumulateur, force1), new Reculer(drive));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* return new SequentialCommandGroup(new Avancer(drive), new Force7(lanceur, force7, accumulateur)
|
||||||
|
, new Force1(lanceur, accumulateur, force1), new Reculer(drive));*/
|
||||||
|
@ -4,13 +4,25 @@
|
|||||||
|
|
||||||
package frc.robot.commands;
|
package frc.robot.commands;
|
||||||
|
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.BuiltInLayouts;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardLayout;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab;
|
||||||
import edu.wpi.first.wpilibj2.command.CommandBase;
|
import edu.wpi.first.wpilibj2.command.CommandBase;
|
||||||
import frc.robot.subsystems.Drive;
|
import frc.robot.subsystems.Drive;
|
||||||
|
|
||||||
public class Avancer extends CommandBase {
|
public class Avancer extends CommandBase {
|
||||||
private Drive drive;
|
private Drive drive;
|
||||||
|
ShuffleboardTab dashboard = Shuffleboard.getTab("Dashboard");
|
||||||
|
ShuffleboardLayout avancer = Shuffleboard.getTab("Dashboard")
|
||||||
|
.getLayout("Avancer", BuiltInLayouts.kList)
|
||||||
|
.withSize(3, 3);
|
||||||
/** Creates a new Avancer. */
|
/** Creates a new Avancer. */
|
||||||
public Avancer(Drive drive) {
|
public Avancer(Drive drive) {
|
||||||
|
avancer.add("vitesse x", 1);
|
||||||
|
avancer.add("vitesse y", 2);
|
||||||
|
avancer.add("vitesse z", 3);
|
||||||
|
avancer.add("distance", 4);
|
||||||
this.drive = drive;
|
this.drive = drive;
|
||||||
addRequirements(drive);
|
addRequirements(drive);
|
||||||
// Use addRequirements() here to declare subsystem dependencies.
|
// Use addRequirements() here to declare subsystem dependencies.
|
||||||
|
@ -43,7 +43,7 @@ public class Force4 extends CommandBase {
|
|||||||
accumulateur.stop();
|
accumulateur.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
lanceur.lancer(force4.getDouble(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called once the command ends or is interrupted.
|
// Called once the command ends or is interrupted.
|
||||||
|
@ -43,7 +43,7 @@ public class Force5 extends CommandBase {
|
|||||||
accumulateur.stop();
|
accumulateur.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
lanceur.lancer(force5.getDouble(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called once the command ends or is interrupted.
|
// Called once the command ends or is interrupted.
|
||||||
|
@ -42,7 +42,7 @@ public class Force6 extends CommandBase {
|
|||||||
accumulateur.stop();
|
accumulateur.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
lanceur.lancer(force6.getDouble(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called once the command ends or is interrupted.
|
// Called once the command ends or is interrupted.
|
||||||
|
@ -41,7 +41,6 @@ public class Force7 extends CommandBase {
|
|||||||
accumulateur.stop();
|
accumulateur.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
lanceur.lancer(force7.getDouble(0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Called once the command ends or is interrupted.
|
// Called once the command ends or is interrupted.
|
||||||
|
@ -28,6 +28,9 @@ public class Lancez extends CommandBase {
|
|||||||
public void execute() {
|
public void execute() {
|
||||||
lanceur.lancer(0);
|
lanceur.lancer(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Called once the command ends or is interrupted.
|
// Called once the command ends or is interrupted.
|
||||||
@Override
|
@Override
|
||||||
|
@ -4,13 +4,25 @@
|
|||||||
|
|
||||||
package frc.robot.commands;
|
package frc.robot.commands;
|
||||||
|
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.BuiltInLayouts;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardLayout;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab;
|
||||||
import edu.wpi.first.wpilibj2.command.CommandBase;
|
import edu.wpi.first.wpilibj2.command.CommandBase;
|
||||||
import frc.robot.subsystems.Drive;
|
import frc.robot.subsystems.Drive;
|
||||||
|
|
||||||
public class Reculer extends CommandBase {
|
public class Reculer extends CommandBase {
|
||||||
private Drive drive;
|
private Drive drive;
|
||||||
|
ShuffleboardTab dashboard = Shuffleboard.getTab("Dashboard");
|
||||||
|
ShuffleboardLayout reculer = Shuffleboard.getTab("Dashboard")
|
||||||
|
.getLayout("Reculer", BuiltInLayouts.kList)
|
||||||
|
.withSize(3, 3);
|
||||||
/** Creates a new Reculer. */
|
/** Creates a new Reculer. */
|
||||||
public Reculer(Drive drive) {
|
public Reculer(Drive drive) {
|
||||||
|
reculer.add("vitesse x", 1);
|
||||||
|
reculer.add("vitesse y", 2);
|
||||||
|
reculer.add("vitesse z", 3);
|
||||||
|
reculer.add("distance", 4);
|
||||||
this.drive = drive;
|
this.drive = drive;
|
||||||
addRequirements(drive);
|
addRequirements(drive);
|
||||||
// Use addRequirements() here to declare subsystem dependencies.
|
// Use addRequirements() here to declare subsystem dependencies.
|
||||||
|
@ -7,12 +7,23 @@ package frc.robot.subsystems;
|
|||||||
import com.revrobotics.CANSparkMax;
|
import com.revrobotics.CANSparkMax;
|
||||||
import com.revrobotics.CANSparkMaxLowLevel.MotorType;
|
import com.revrobotics.CANSparkMaxLowLevel.MotorType;
|
||||||
|
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.BuiltInLayouts;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardLayout;
|
||||||
|
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab;
|
||||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||||
import frc.robot.Constants;
|
import frc.robot.Constants;
|
||||||
|
|
||||||
public class Lanceur extends SubsystemBase {
|
public class Lanceur extends SubsystemBase {
|
||||||
|
ShuffleboardTab dashboard = Shuffleboard.getTab("Dashboard");
|
||||||
public Lanceur(){}
|
ShuffleboardLayout pid = Shuffleboard.getTab("Dashboard")
|
||||||
|
.getLayout("Pid", BuiltInLayouts.kList)
|
||||||
|
.withSize(3, 7);
|
||||||
|
public Lanceur(){
|
||||||
|
pid.add("p", 1);
|
||||||
|
pid.add("i", 2);
|
||||||
|
pid.add("d", 3);
|
||||||
|
}
|
||||||
final CANSparkMax lanceur = new CANSparkMax(Constants.lanceur, MotorType.kBrushless);
|
final CANSparkMax lanceur = new CANSparkMax(Constants.lanceur, MotorType.kBrushless);
|
||||||
|
|
||||||
public void lancer(double vitesse){
|
public void lancer(double vitesse){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user