robot-2023/src/main/java/frc/robot/Constants.java
Antoine PerreaultE 862c449dc8 tcfnjkm
2023-02-13 19:14:01 -05:00

26 lines
709 B
Java

package frc.robot;
public class Constants {
public static int avantdroit = 0;
public static int avantgauche = 1;
public static int arrieredroit = 2;
public static int arrieregauche = 3;
public static int leverGratte = 0;
public static int baisserGratte = 1;
// pneumatique
public static int pistonpinceouvre = 0;
public static int pistonpinceferme = 1;
public static int actuateur = 2;
public static int brakedroit = 3;
public static int brakegauche = 4;
// DIO
public static int limitbd = 0;
public static int limitbg = 2;
public static int limithd = 3;
public static int limithg = 1;
public static int BrasTelescopique = 5;
}