add necessary constant port values for joystick buttons
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
1 package org.usfirst.frc.team3501.robot;
2
3 import edu.wpi.first.wpilibj.DoubleSolenoid;
4 import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
5
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
12 public class Constants {
13 public static class OI {
14 // Computer Ports
15 public final static int LEFT_STICK_PORT = 0;
16 public final static int RIGHT_STICK_PORT = 1;
17
18 public final static int PASS_PORTCULLIS_PORT = 0;
19 public final static int PASS_CHEVAL_DE_FRISE_PORT = 0;
20 public final static int PASS_DRAWBRIDGE = 0;
21 public final static int PASS_SALLYPORT_PORT = 0;
22
23 public final static int ARCADE_INTAKEARM_LEVEL_ONE_PORT = 0;
24 public final static int ARCADE_INTAKEARM_LEVEL_TWO_PORT = 0;
25 public final static int ARCADE_INTAKEARM_LEVEL_THREE_PORT = 0;
26 public final static int ARCADE_INTAKEARM_LEVEL_FOUR_PORT = 0;
27
28 public final static int LEFT_JOYSTICK_TRIGGER_PORT = 0;
29 public final static int LEFT_JOYSTICK_TOP_LEFT_PORT = 4;
30 public final static int LEFT_JOYSTICK_TOP_RIGHT_PORT = 5;
31 public final static int LEFT_JOYSTICK_TOP_CENTER_PORT = 3;
32 public final static int LEFT_JOYSTICK_TOP_LOW_PORT = 2;
33
34 public final static int RIGHT_JOYSTICK_TRIGGER_PORT = 0;
35 public final static int RIGHT_JOYSTICK_THUMB_PORT = 2;
36
37 public final static int SCALING_BUTTON_PORT = 0;
38 }
39
40 public static class DriveTrain {
41 // Drivetrain Motor Related Ports
42 public static final int FRONT_LEFT = 1;
43 public static final int FRONT_RIGHT = 4;
44 public static final int REAR_LEFT = 2;
45 public static final int REAR_RIGHT = 3;
46
47 // Encoder related ports
48 public final static int ENCODER_LEFT_A = 0;
49 public final static int ENCODER_LEFT_B = 1;
50 public final static int ENCODER_RIGHT_A = 9;
51 public final static int ENCODER_RIGHT_B = 8;
52
53 public final static int FORWARD_CHANNEL = 0;
54 public final static int REVERSE_CHANNEL = 0;
55
56 private final static double WHEEL_DIAMETER = 6.0; // in inches
57 private final static double PULSES_PER_ROTATION = 256; // in pulses
58 private final static double OUTPUT_SPROCKET_DIAMETER = 2.0; // in inches
59 private final static double WHEEL_SPROCKET_DIAMETER = 3.5; // in inches
60 public static final double INCHES_PER_PULSE = ((3.66 / 5.14) * 6 * Math.PI)
61 / 256;
62
63 public static final int MANUAL_MODE = 1, ENCODER_MODE = 2, GYRO_MODE = 3;
64 public static final int LEFT_FORWARD = 0, LEFT_REVERSE = 1,
65 RIGHT_FORWARD = 2, RIGHT_REVERSE = 3;
66 public static double time = 0;
67
68 // Gearing constants
69 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
70 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
71
72 }
73
74 public static class Scaler {
75 // Piston channels
76 public final static int FORWARD_CHANNEL = 0;
77 public final static int REVERSE_CHANNEL = 1;
78
79 // Winch port
80 public final static int WINCH_MOTOR = 0;
81
82 // Winch speeds
83 public final static double WINCH_STOP_SPEED = 0.0;
84 public final static double SECONDS_TO_CLAMP = 2.0;
85 }
86
87 public static class Shooter {
88 public static final int PORT = 0;
89 public static final int PUNCH_FORWARD_PORT = 0;
90 public static final int PUNCH_REVERSE_PORT = 1;
91 public static final int ANGLE_ADJUSTER_PORT = 0;
92
93 public static final DoubleSolenoid.Value punch = DoubleSolenoid.Value.kForward;
94 public static final DoubleSolenoid.Value retract = DoubleSolenoid.Value.kReverse;
95
96 // Encoder port
97 public static final int ENCODER_PORT_A = 0;
98 public static final int ENCODER_PORT_B = 0;
99
100 public static enum State {
101 RUNNING, STOPPED;
102 }
103 }
104
105 public static class DeadReckoning {
106 public static final double DEFAULT_SPEED = 0.5;
107 }
108
109 public static class IntakeArm {
110 public static final int ROLLER_PORT = 0;
111 public static final int ARM_PORT = 1;
112 public static final int POT_CHANNEL = 0;
113 public static final double INTAKE_SPEED = 0.5;
114 public static final double OUTPUT_SPEED = -0.5;
115 public final static double FULL_RANGE = 270.0; // in degrees
116 public final static double OFFSET = -135.0; // in degrees
117 public static final double ZERO_ANGLE = 0;
118 }
119
120 public static class DefenseArm {
121 // Potentiometer related ports
122 public static final int ARM_CHANNEL = 0;
123 public static final int ARM_PORT = 0;
124 public static final int HAND_PORT = 1;
125 public static final int HAND_CHANNEL = 1;
126 public final static double FULL_RANGE = 270.0; // in degrees
127 public final static double OFFSET = -135.0; // in degrees
128 public final static double[] armPotValue = { 0.0, 45.0, 90.0 }; // 3
129 // level
130 public final static double ARM_LENGTH = 0; // TODO: find actual length
131 public final static double HAND_LENGTH = 0; // TODO: find actual length
132 public final static double ARM_MOUNTED_HEIGHT = 0; // TODO: find actual
133 // height
134 }
135
136 public enum Direction {
137 UP, DOWN, RIGHT, LEFT, FORWARD, BACKWARD;
138 }
139
140 public enum Defense {
141 PORTCULLIS, SALLY_PORT, ROUGH_TERRAIN, LOW_BAR, CHEVAL_DE_FRISE, DRAWBRIDGE, MOAT, ROCK_WALL, RAMPART;
142 }
143 }