Delete StopWinch and Climber subsystem, edit javadoc comments
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Constants.java
1 package org.usfirst.frc.team3501.robot;
2
3 /**
4 * The Constants stores constant values for all subsystems. This includes the
5 * port values for motors and sensors, as well as important operational
6 * constants for subsystems such as max and min values.
7 */
8
9 public class Constants {
10 public static class OI {
11 public final static int LEFT_STICK_PORT = 0;
12 public final static int RIGHT_STICK_PORT = 1;
13 public final static int TOGGLE_WINCH_PORT = 0;
14
15 public final static int TOGGLE_FLYWHEEL_PORT = 0;
16 public final static int TOGGLE_INDEXWHEEL_PORT = 0;
17 }
18
19 public static class Shooter {
20 // MOTOR CONTROLLERS
21 public static final int FLY_WHEEL = 0;
22 public static final int INDEX_WHEEL = 0;
23 }
24
25 public static class DriveTrain {
26 // MOTOR CONTROLLERS
27 public static final int FRONT_LEFT = 1;
28 public static final int FRONT_RIGHT = 3;
29 public static final int REAR_LEFT = 2;
30 public static final int REAR_RIGHT = 4;
31
32 // ENCODERS
33 public static final int ENCODER_LEFT_A = 0;
34 public static final int ENCODER_LEFT_B = 1;
35 public static final int ENCODER_RIGHT_A = 2;
36 public static final int ENCODER_RIGHT_B = 3;
37 }
38
39 public static class Climber {
40 // MOTOR CONTROLLERS
41 public static final int MOTOR_VAL = 1;
42
43 }
44
45 public static enum Direction {
46 LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
47 }
48 }