This commit is contained in:
parent
ee2c15b63f
commit
48503cf5bc
@ -15,15 +15,15 @@ public class Balayeuse extends SubsystemBase {
|
||||
/** Creates a new Balayeuse. */
|
||||
|
||||
public Balayeuse() {}
|
||||
final WPI_TalonSRX Moteur = new WPI_TalonSRX(Constants.Moteur);
|
||||
final TalonSRX Moteur2 = new TalonSRX(Constants.Moteur2);
|
||||
final WPI_TalonSRX roue = new WPI_TalonSRX(Constants.roue);
|
||||
final TalonSRX etoile = new TalonSRX(Constants.etoile);
|
||||
|
||||
public void Accumulation(double vitesse){
|
||||
Moteur.set(vitesse);
|
||||
roue.set(vitesse);
|
||||
}
|
||||
public void balayeuse(){
|
||||
Moteur2.follow(Moteur);
|
||||
Moteur2.setInverted(true);
|
||||
etoile.follow(roue);
|
||||
etoile.setInverted(true);
|
||||
}
|
||||
@Override
|
||||
public void periodic() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user