bvnbm
This commit is contained in:
parent
79691234b4
commit
ac2d2cf323
@ -31,7 +31,12 @@ public class Force1 extends CommandBase {
|
|||||||
double vitesse = SmartDashboard.getNumber("Force Lanceur", 100);
|
double vitesse = SmartDashboard.getNumber("Force Lanceur", 100);
|
||||||
lanceur.lancer(200);
|
lanceur.lancer(200);
|
||||||
if (lanceur.vitesse() > vitesse ){
|
if (lanceur.vitesse() > vitesse ){
|
||||||
accumulateur.tourneavant();
|
if(accumulateur.tourneavant() < 1024){
|
||||||
|
accumulateur.Deaccumuler();
|
||||||
|
}
|
||||||
|
if(accumulateur.tournearriere()<-256){
|
||||||
|
accumulateur.reaccumuler();
|
||||||
|
}
|
||||||
accumulateur.tournearriere();
|
accumulateur.tournearriere();
|
||||||
} else {
|
} else {
|
||||||
accumulateur.stop();
|
accumulateur.stop();
|
||||||
|
@ -13,7 +13,6 @@ import frc.robot.Constants;
|
|||||||
|
|
||||||
public class Accumulateur extends SubsystemBase {
|
public class Accumulateur extends SubsystemBase {
|
||||||
private WPI_TalonSRX moteuracc = new WPI_TalonSRX(Constants.accumulateur);
|
private WPI_TalonSRX moteuracc = new WPI_TalonSRX(Constants.accumulateur);
|
||||||
private DigitalInput limitacc = new DigitalInput(Constants.ballon);
|
|
||||||
/** Creates a new Accumulateur. */
|
/** Creates a new Accumulateur. */
|
||||||
public Accumulateur() {
|
public Accumulateur() {
|
||||||
|
|
||||||
@ -21,14 +20,14 @@ public class Accumulateur extends SubsystemBase {
|
|||||||
public void Deaccumuler(){
|
public void Deaccumuler(){
|
||||||
moteuracc.set(0.5);
|
moteuracc.set(0.5);
|
||||||
}
|
}
|
||||||
|
public void reaccumuler(){
|
||||||
|
moteuracc.set(-0.5);
|
||||||
|
}
|
||||||
public double tourneavant(){
|
public double tourneavant(){
|
||||||
moteuracc.set(0.5);
|
|
||||||
return(moteuracc.getSelectedSensorPosition());
|
return(moteuracc.getSelectedSensorPosition());
|
||||||
}
|
}
|
||||||
|
|
||||||
public double tournearriere(){
|
public double tournearriere(){
|
||||||
moteuracc.set(-0.5);
|
|
||||||
return(moteuracc.getSelectedSensorPosition());
|
return(moteuracc.getSelectedSensorPosition());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user