Finalize Shooter and RunIndexWheelContinuous
[3501/2017steamworks] / 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 import edu.wpi.first.wpilibj.SPI;
6
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
13 public class Constants {
14 public static class OI {
15 public final static int LEFT_STICK_PORT = 0;
16 public final static int RIGHT_STICK_PORT = 1;
17
18 // Need to fill in the port numbers of the following buttons
19 public final static int TOGGLE_WINCH_PORT = 0;
20 public final static int TOGGLE_FLYWHEEL_PORT = 4;
21 public final static int RUN_INDEXWHEEL_PORT = 1;
22 public final static int REVERSE_INDEXWHEEL_PORT = 2;
23 public final static int TOGGLE_GEAR_PORT = 5;
24 public final static int RUN_INTAKE_PORT = 1;
25 public final static int REVERSE_INTAKE_PORT = 4;
26 public static final int INCREASE_SHOOTER_SPEED_PORT = 6;
27 public static final int DECREASE_SHOOTER_SPEED_PORT = 2;
28 public static final int CHANGE_CAMERA_VIEW = 6;
29 }
30
31 public static class Shooter {
32 // MOTOR CONTROLLERS
33 public static final int FLY_WHEEL1 = 5;
34 public static final int FLY_WHEEL2 = 6;
35 public static final int INDEX_WHEEL = 7;
36
37 public final static int HALL_EFFECT_PORT = 9;
38
39 public final static int TOGGLE_INDEXER = 8;
40
41 public static final int PISTON_MODULE = 10, PISTON_FORWARD = 4,
42 PISTON_REVERSE = 5;
43 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
44 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
45 }
46
47 public static class DriveTrain {
48 // GEARS
49 public static final int PISTON_MODULE = 10, LEFT_GEAR_PISTON_FORWARD = 0,
50 LEFT_GEAR_PISTON_REVERSE = 1, RIGHT_GEAR_PISTON_FORWARD = 2,
51 RIGHT_GEAR_PISTON_REVERSE = 3;
52 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
53 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
54
55 public final static int TOGGLE_DRIVE_PISTON = 7;
56
57 // MOTOR CONTROLLERS
58 public static final int FRONT_LEFT = 1;
59 public static final int FRONT_RIGHT = 3;
60 public static final int REAR_LEFT = 2;
61 public static final int REAR_RIGHT = 4;
62
63 // ENCODERS
64 public static final int ENCODER_LEFT_A = 1;
65 public static final int ENCODER_LEFT_B = 0;
66 public static final int ENCODER_RIGHT_A = 2;
67 public static final int ENCODER_RIGHT_B = 3;
68
69 public static final SPI.Port GYRO_PORT = SPI.Port.kOnboardCS0;
70 }
71
72 public static class Intake {
73 public static final int INTAKE_ROLLER_PORT = 8;
74
75 }
76
77 public static enum Direction {
78 LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
79 }
80 }