Made final int for toggling camera feeds equal to 7(button 7)
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Constants.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot;
2
df8c00f0
AD
3import edu.wpi.first.wpilibj.DoubleSolenoid;
4import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
bf921ece
CZ
5import edu.wpi.first.wpilibj.SPI;
6
38a404b3
KZ
7/**
8 * The Constants stores constant values for all subsystems. This includes the
9 * port values for motors and sensors, as well as important operational
10 * constants for subsystems such as max and min values.
11 */
12
13public class Constants {
d17d868d 14 public static class OI {
6b4ab3d7
CZ
15 public final static int LEFT_STICK_PORT = 0;
16 public final static int RIGHT_STICK_PORT = 1;
14ff5362 17 public final static int TOGGLE_WINCH_PORT = 0;
2291f7b3 18 public final static int TOGGLE_FLYWHEEL_PORT = 0;
19 public final static int TOGGLE_INDEXWHEEL_PORT = 0;
0c746368 20<<<<<<< HEAD
f388cdf4 21 public final static int TOGGLE_GEAR_PORT = 0;
0c746368
AEE
22=======
23 public static final int TOGGLE_CAMERA_FEEDS = 7;
24>>>>>>> Made final int for toggling camera feeds equal to 7(button 7)
d17d868d 25 }
38a404b3 26
f91f2b55 27 public static class Shooter {
28 // MOTOR CONTROLLERS
29 public static final int FLY_WHEEL = 0;
30 public static final int INDEX_WHEEL = 0;
adfc0171 31 public final static int TOGGLE_WINCH_PORT = 0;
d0a3a99e 32
7099e02a 33 public final static int TOGGLE_FLYWHEEL_PORT = 0;
34 public final static int TOGGLE_INDEXWHEEL_PORT = 0;
e74e5e9d
SG
35 }
36
d17d868d 37 public static class DriveTrain {
df8c00f0 38 // GEARS
d2757206
AD
39 public static final int MODULE_NUMBER = 10, LEFT_GEAR_PISTON_FORWARD = 6,
40 LEFT_GEAR_PISTON_REVERSE = 5, RIGHT_GEAR_PISTON_FORWARD = 0,
41 RIGHT_GEAR_PISTON_REVERSE = 1;
df8c00f0
AD
42 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
43 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
44
d17d868d 45 // MOTOR CONTROLLERS
68301d98
CZ
46 public static final int FRONT_LEFT = 1;
47 public static final int FRONT_RIGHT = 3;
48 public static final int REAR_LEFT = 2;
b06733de 49 public static final int REAR_RIGHT = 4;
38a404b3 50
d17d868d 51 // ENCODERS
93b4c266
CZ
52 public static final int ENCODER_LEFT_A = 1;
53 public static final int ENCODER_LEFT_B = 0;
b06733de
CZ
54 public static final int ENCODER_RIGHT_A = 2;
55 public static final int ENCODER_RIGHT_B = 3;
bf921ece
CZ
56
57 public static final SPI.Port GYRO_PORT = SPI.Port.kOnboardCS0;
d17d868d 58 }
fa4e4a97 59
10d788c3
AD
60 public static class Intake {
61 public static final int INTAKE_ROLLER_PORT = 0;
44c26e0c 62
f761d7ba
SG
63 }
64
d17d868d 65 public static enum Direction {
66 LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
67 }
fbc1210e
ME
68
69 public class CameraFeeds {
70 public static final int btCamCenter = 1;
71 public static final int btCamRight = 2;
72
73 public static final String camNameCenter = "cam0";
74 public static final String camNameRight = "cam1";
75 public static final int imgQuality = 60;
76 }
38a404b3 77}