53 lines
1.5 KiB
Java
53 lines
1.5 KiB
Java
// 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 {
|
|
// Lanceur
|
|
public static int lanceur = 10;
|
|
public static int lancer2 = 13;
|
|
public static int lancer3 = 14;
|
|
public static int lancer4 = 15;
|
|
// Ballayeuse
|
|
public static int roue = 16;
|
|
public static int etoile = 21;
|
|
|
|
// Accumulateur
|
|
public static int Moteuracc2 = 20;
|
|
public static int Moteuracc = 19;
|
|
|
|
// Guideur
|
|
public static int guideur = 22;
|
|
|
|
//grimpeur
|
|
public static int grimpeurd = 26;
|
|
public static int grimpeurg = 27;
|
|
|
|
// Swerve
|
|
public static int AvantDroitDrive = 18;
|
|
public static int AvantDroitAngle = 17;
|
|
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 = 7;
|
|
public static int ArriereGauche = 6;
|
|
|
|
// Limit switch
|
|
public static int guideurhaut = 4;
|
|
public static int guideurbas = 5;
|
|
public static int photocellacc = 2;
|
|
|
|
//piston
|
|
public static int pistondroiteouvre= 7;
|
|
}
|