fix bugs
[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 = 0;
21 public final static int TOGGLE_INDEXWHEEL_PORT = 0;
22 public final static int REVERSE_INDEXWHEEL_PORT = 0;
23 public final static int TOGGLE_GEAR_PORT = 0;
24 public final static int TOGGLE_INTAKE_PORT = 0;
25 public final static int REVERSE_INTAKE_PORT = 0;
26 }
27
28 public static class Shooter {
29 // MOTOR CONTROLLERS
30 public static final int FLY_WHEEL = 0;
31 public static final int INDEX_WHEEL = 0;
32 public final static int TOGGLE_WINCH_PORT = 0;
33
34 public final static int TOGGLE_FLYWHEEL_PORT = 0;
35 public final static int TOGGLE_INDEXWHEEL_PORT = 0;
36
37 public final static int HALL_EFFECT_PORT = 4;
38 }
39
40 public static class DriveTrain {
41 // GEARS
42 public static final int MODULE_NUMBER = 10, LEFT_GEAR_PISTON_FORWARD = 6,
43 LEFT_GEAR_PISTON_REVERSE = 5, RIGHT_GEAR_PISTON_FORWARD = 0,
44 RIGHT_GEAR_PISTON_REVERSE = 1;
45 public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
46 public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
47
48 // MOTOR CONTROLLERS
49 public static final int FRONT_LEFT = 1;
50 public static final int FRONT_RIGHT = 3;
51 public static final int REAR_LEFT = 2;
52 public static final int REAR_RIGHT = 4;
53
54 // ENCODERS
55 public static final int ENCODER_LEFT_A = 1;
56 public static final int ENCODER_LEFT_B = 0;
57 public static final int ENCODER_RIGHT_A = 2;
58 public static final int ENCODER_RIGHT_B = 3;
59
60 public static final SPI.Port GYRO_PORT = SPI.Port.kOnboardCS0;
61 }
62
63 public static class Intake {
64 public static final int INTAKE_ROLLER_PORT = 0;
65
66 }
67
68 public static enum Direction {
69 LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
70 }
71 }