robot-2023/src/main/java/frc/robot/Constants.java

39 lines
1.0 KiB
Java
Raw Normal View History

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-03-07 17:58:03 -05:00
<<<<<<< HEAD
2023-02-13 19:48:32 -05:00
public static int BrasTelescopique = 4;
2023-02-15 18:54:35 -05:00
public static int pivot = 5;
2023-02-13 19:48:32 -05:00
2023-02-15 18:54:35 -05:00
//moteur
2023-02-08 19:55:20 -05:00
public static int leverGratte = 0;
public static int baisserGratte = 1;
2023-03-07 17:58:03 -05:00
=======
2023-02-13 18:28:09 -05:00
2023-03-07 17:57:00 -05:00
public static int leverGratte = 7;
public static int baisserGratte = 6;
2023-03-07 17:58:03 -05:00
>>>>>>> Dash
2023-02-13 18:28:09 -05:00
2023-02-08 19:04:28 -05:00
// pneumatique
public static int pistonpinceouvre = 0;
public static int pistonpinceferme = 1;
2023-03-07 17:57:00 -05:00
public static int actuateur = 8;
2023-02-13 18:31:48 -05:00
public static int brakedroit = 3;
public static int brakegauche = 4;
2023-02-22 18:29:18 -05:00
public static int brakewinchf = 5;
public static int brakewinchb = 5;
2023-02-15 18:29:34 -05:00
// DIO
2023-02-08 19:55:20 -05:00
public static int limitbd = 0;
public static int limitbg = 2;
public static int limithd = 3;
public static int limithg = 1;
2023-02-15 18:29:34 -05:00
public static int photocell = 4;
2023-02-15 18:54:35 -05:00
public static int limitpivot = 5;
2023-02-13 18:28:09 -05:00
2023-02-13 19:48:32 -05:00
2023-02-06 19:24:26 -05:00
}
2023-02-13 19:14:01 -05:00