26 lines
709 B
Java
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;
|
|
}
|
|
|