add code for switching b/w cameras
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot;
2
9b10474d 3import edu.wpi.first.wpilibj.DoubleSolenoid;
2a099bc6 4import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
9b10474d 5
38a404b3
KZ
6/**
7 * The Constants stores constant values for all subsystems. This includes the
8 * port values for motors and sensors, as well as important operational
9 * constants for subsystems such as max and min values.
10 */
11
12public class Constants {
e4fbab02
HD
13 public final static int PCM_MODULE_A = 9;
14 public final static int PCM_MODULE_B = 10;
15
200caf63
KZ
16 public static class OI {
17 // Computer Ports
18 public final static int LEFT_STICK_PORT = 0;
19 public final static int RIGHT_STICK_PORT = 1;
2c9bcd75 20
e1f7a742
HD
21 // Left Joystick
22 public final static int LEFT_JOYSTICK_GEAR_SHIFT_PORT = 1;
23 public final static int LEFT_JOYSTICK_EXTEND_INTAKE_1_PORT = 3;
24 public final static int LEFT_JOYSTICK_EXTEND_INTAKE_2_PORT = 5;
25 public final static int LEFT_JOYSTICK_RETRACT_INTAKE_1_PORT = 4;
26 public final static int LEFT_JOYSTICK_RETRACT_INTAKE_2_PORT = 6;
27 public final static int LEFT_JOYSTICK_TOGGLE_FRONT_PORT = 7;
28
29 // Right Joystick
30 public final static int RIGHT_JOYSTICK_INTAKE_PORT = 1;
31 public final static int RIGHT_JOYSTICK_OUTTAKE_1_PORT = 3;
32 public final static int RIGHT_JOYSTICK_OUTTAKE_2_PORT = 4;
33 public final static int RIGHT_JOYSTICK_SHOOTER_UP_PORT = 2;
34 public final static int RIGHT_JOYSTICK_SHOOTER_DOWN_1_PORT = 5;
35 public final static int RIGHT_JOYSTICK_SHOOTER_DOWN_2_PORT = 6;
52ef246c 36
200caf63 37 }
38a404b3 38
200caf63 39 public static class DriveTrain {
116863c5
HD
40 // Limits changes in speed during joystick driving
41 public static final double kADJUST = 8;
42
43338192 43 // Drivetrain Motor related ports
949415d0
HD
44 public static final int DRIVE_FRONT_LEFT = 1;
45 public static final int DRIVE_REAR_LEFT = 2;
46 public static final int DRIVE_FRONT_RIGHT = 6;
47 public static final int DRIVE_REAR_RIGHT = 5;
27615e61 48
43338192 49 // Drivetrain shifter related ports
e1f7a742 50 public static final int LEFT_SHIFT_MODULE = PCM_MODULE_B;
eeb6c3d9
HD
51 public static final int LEFT_SHIFT_FORWARD = 6;
52 public static final int LEFT_SHIFT_REVERSE = 3;
e1f7a742
HD
53 public static final int RIGHT_SHIFT_MODULE = PCM_MODULE_B;
54 public static final int RIGHT_SHIFT_FORWARD = 2;
55 public static final int RIGHT_SHIFT_REVERSE = 7;
45bdf5b9 56
43338192
HD
57 // Encoder related ports
58 public final static int ENCODER_LEFT_A = 0;
59 public final static int ENCODER_LEFT_B = 1;
60 public final static int ENCODER_RIGHT_A = 3;
61 public final static int ENCODER_RIGHT_B = 4;
62
7236fc11
ME
63 public static final double INCHES_PER_PULSE = ((3.66 / 5.14) * 6 * Math.PI)
64 / 256;
33141cdd 65
fb75626b 66 public static double kp = 0.013, ki = 0.000015, kd = -0.002;
f8bfcc62 67 public static double encoderTolerance = 8.0;
2a099bc6
KZ
68
69 // Gearing constants
70 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
71 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
200caf63 72 }
38a404b3 73
200caf63 74 public static class Shooter {
e1f7a742
HD
75 public static final int CATAPULT1_MODULE = PCM_MODULE_B;
76 public static final int CATAPULT1_FORWARD = 4;
00cf1e6c 77 public static final int CATAPULT1_REVERSE = 1;
a68e4347 78 public static final int CATAPULT2_MODULE = PCM_MODULE_A;
e1f7a742
HD
79 public static final int CATAPULT2_FORWARD = 0;
80 public static final int CATAPULT2_REVERSE = 1;
e4fbab02 81
7988f380
HD
82 public static final Value SHOOT = Value.kForward;
83 public static final Value RESET = Value.kReverse;
e4fbab02 84 public static final double WAIT_TIME = 2.0; // In seconds
b1678339
ME
85
86 // TODO: test for this time
b1678339 87
200caf63 88 }
40348cab 89
200caf63 90 public static class IntakeArm {
e1f7a742 91 public static final int INTAKE_ROLLER_PORT = 8;
5cff8910
ME
92
93 // for pistons
a68e4347 94 public static final int LEFT_INTAKE_MODULE = PCM_MODULE_A;
e1f7a742
HD
95 public static final int LEFT_INTAKE_FORWARD = 5;
96 public static final int LEFT_INTAKE_REVERSE = 2;
97 public static final int RIGHT_INTAKE_MODULE = PCM_MODULE_B;
98 public static final int RIGHT_INTAKE_FORWARD = 5;
99 public static final int RIGHT_INTAKE_REVERSE = 0;
5cff8910 100
2781cca0
ME
101 public static final Value EXTEND = DoubleSolenoid.Value.kForward;
102 public static final Value RETRACT = DoubleSolenoid.Value.kReverse;
103
e1f7a742 104 public static final int IN = 1;
ba29a57a 105 public static final int STOP = 0;
e1f7a742
HD
106 public static final int OUT = -1;
107
5cff8910 108 // for roller
116863c5
HD
109 public static final double INTAKE_SPEED = 0.7;
110 public static final double OUTPUT_SPEED = -0.7;
200caf63 111 }
9e9154af 112
0022ac84 113 public static class Auton { // TODO: test for all these values
f53566b3 114 // Defense crossing speeds from -1 to 1
b378dfef 115 public static final double DEFAULT_SPEED = 0.3;
f53566b3
HD
116 public static final double MOAT_SPEED = 0.6;
117 public static final double ROCK_WALL_SPEED = 0.8;
b378dfef 118 public static final double ROUGH_TERRAIN_SPEED = 0.7;
5c706789 119 public static final double RAMPART_SPEED = 0.4;
b378dfef 120 public static final double LOW_BAR_SPEED = 0.5;
f53566b3
HD
121
122 // Defense crossing times in seconds
b378dfef
HD
123 public static final double DEFAULT_TIME = 10.0;
124 public static final double MOAT_TIME = 7.0;
125 public static final double ROCK_WALL_TIME = 8.0;
126 public static final double ROUGH_TERRAIN_TIME = 6.0;
5c706789 127 public static final double RAMPART_TIME = 10.0;
b378dfef 128 public static final double LOW_BAR_TIME = 6.0;
f53566b3
HD
129
130 // Time to wait before shooting in seconds
131 public static final double WAIT_TIME = 1.0;
132 }
133
7236fc11
ME
134 public static class CameraFeeds {
135
136 // TODO: what are cam names?
137 public static final String camNameIntake = "";
138 public static final String camNameShooter = "";
139
140 // TODO: img quality?
141 public static final int imgQuality = 0;
142
143 }
144
9e9154af 145 public enum Defense {
c62f7132 146 PORTCULLIS, SALLY_PORT, ROUGH_TERRAIN, LOW_BAR, CHIVAL_DE_FRISE, DRAWBRIDGE, MOAT, ROCK_WALL, RAMPART, NONE;
9e9154af 147 }
38a404b3 148}