This commit is contained in:
parent
ad1fd9d2d2
commit
5e44778df5
@ -42,7 +42,7 @@ public class Constants {
|
|||||||
public static int ArriereDroit = 6;
|
public static int ArriereDroit = 6;
|
||||||
public static int ArriereGauche = 7;
|
public static int ArriereGauche = 7;
|
||||||
|
|
||||||
// Limit switsh
|
// Limit switch
|
||||||
public static int guideurhaut = 23;
|
public static int guideurhaut = 23;
|
||||||
public static int guideurbas = 24;
|
public static int guideurbas = 24;
|
||||||
public static int limitacc = 25;
|
public static int limitacc = 25;
|
||||||
@ -50,4 +50,9 @@ public class Constants {
|
|||||||
public static int limithaut = 28;
|
public static int limithaut = 28;
|
||||||
public static int limitbas = 29;
|
public static int limitbas = 29;
|
||||||
|
|
||||||
|
//piston
|
||||||
|
public static int pistondroiteouvre= 30;
|
||||||
|
public static int pistondroiteferme= 31;
|
||||||
|
public static int pistondgaucheouvre= 32;
|
||||||
|
public static int pistondgauchferme= 32;
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,10 @@ import com.revrobotics.CANSparkMax;
|
|||||||
import com.revrobotics.CANSparkLowLevel.MotorType;
|
import com.revrobotics.CANSparkLowLevel.MotorType;
|
||||||
|
|
||||||
import edu.wpi.first.wpilibj.DigitalInput;
|
import edu.wpi.first.wpilibj.DigitalInput;
|
||||||
|
import edu.wpi.first.wpilibj.DoubleSolenoid;
|
||||||
|
import edu.wpi.first.wpilibj.PneumaticsModuleType;
|
||||||
|
import edu.wpi.first.wpilibj.Solenoid;
|
||||||
|
import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
|
||||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||||
import frc.robot.Constants;
|
import frc.robot.Constants;
|
||||||
|
|
||||||
@ -21,6 +25,8 @@ public class Grimpeur extends SubsystemBase {
|
|||||||
// limit switch
|
// limit switch
|
||||||
final DigitalInput limitdroite = new DigitalInput(Constants.limithaut);
|
final DigitalInput limitdroite = new DigitalInput(Constants.limithaut);
|
||||||
final DigitalInput limitgauche = new DigitalInput(Constants.limitbas);
|
final DigitalInput limitgauche = new DigitalInput(Constants.limitbas);
|
||||||
|
final DoubleSolenoid pistondroite= new DoubleSolenoid(PneumaticsModuleType.CTREPCM, Constants.pistondroiteouvre, Constants.pistondroiteouvre);
|
||||||
|
final DoubleSolenoid pistondgauche= new DoubleSolenoid(PneumaticsModuleType.CTREPCM, Constants.pistondgaucheouvre, Constants.pistondroiteouvre);
|
||||||
//fonction
|
//fonction
|
||||||
public void droit(double vitesse){
|
public void droit(double vitesse){
|
||||||
grimpeurd.set(vitesse);
|
grimpeurd.set(vitesse);
|
||||||
@ -40,10 +46,19 @@ public void resetencodeurd(){
|
|||||||
public void resetencodeurg(){
|
public void resetencodeurg(){
|
||||||
grimpeurg.getEncoder().setPosition(0);
|
grimpeurg.getEncoder().setPosition(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AHRS gyroscope = new AHRS();
|
public AHRS gyroscope = new AHRS();
|
||||||
public double getpitch(){
|
public double getpitch(){
|
||||||
return gyroscope.getPitch();
|
return gyroscope.getPitch();
|
||||||
}
|
}
|
||||||
|
public void pistonouvre(){
|
||||||
|
pistondroite.set(Value.kForward);
|
||||||
|
pistondgauche.set(Value.kForward);
|
||||||
|
}
|
||||||
|
public void pistonferme(){
|
||||||
|
pistondroite.set(Value.kReverse);
|
||||||
|
pistondgauche.set(Value.kReverse);
|
||||||
|
}
|
||||||
@Override
|
@Override
|
||||||
public void periodic() {
|
public void periodic() {
|
||||||
// This method will be called once per scheduler run
|
// This method will be called once per scheduler run
|
||||||
|
Loading…
x
Reference in New Issue
Block a user