2023-02-06 19:24:26 -05:00
|
|
|
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;
|
2023-02-08 19:04:28 -05:00
|
|
|
// pneumatique
|
|
|
|
public static int pistonpinceouvre = 0;
|
|
|
|
public static int pistonpinceferme = 1;
|
|
|
|
|
2023-02-06 19:24:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|