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

48 lines
1.3 KiB
Java
Raw Normal View History

2024-01-18 19:26:28 -05:00
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package frc.robot;
/** Add your docs here. */
public class Constants {
2024-01-22 19:33:18 -05:00
// Lanceur
public static int lanceur = 10;
public static int lancer2 = 13;
public static int lancer3 = 14;
public static int lancer4 = 15;
2024-01-22 19:36:39 -05:00
2024-01-22 19:33:18 -05:00
// Ballayeuse
public static int roue = 16;
public static int etoile = 19;
// Accumulateur
public static int Moteuracc2 = 20;
public static int Moteuracc = 21;
// Guideur
public static int guideur = 22;
// Swerve
public static int AvantDroitDrive = 17;
public static int AvantDroitAngle = 18;
public static int AvantGaucheDrive = 2;
public static int AvantGaucheAngle = 3;
public static int ArriereDroitDrive = 11;
public static int ArriereDroitAngle = 12;
public static int ArriereGaucheDrive = 8;
public static int ArriereGaucheAngle = 9;
// CanCoder
public static int AvantDroit = 5;
public static int AvantGauche = 4;
public static int ArriereDroit = 6;
public static int ArriereGauche = 7;
// Limit switsh
public static int guideurhaut = 23;
public static int guideurbas = 24;
public static int limitacc = 25;
2024-01-18 20:02:00 -05:00
2024-01-18 19:26:28 -05:00
}