Add TODOS to drivetrain
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
CommitLineData
38a404b3
KZ
1package 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
9public class Constants {
99d3a628
KZ
10 public static class OI {
11 public final static int LEFT_STICK_PORT = 0;
12 public final static int RIGHT_STICK_PORT = 0;
13 }
38a404b3 14
99d3a628
KZ
15 public static class DriveTrain {
16 public static final int FRONT_LEFT = 0;
17 public static final int FRONT_RIGHT = 0;
18 public static final int REAR_LEFT = 0;
19 public static final int REAR_RIGHT = 0;
20 // TODO: separate different systems with newline and comment saying what a
21 // body does
22 public final static int ENCODER_LEFT_A = 3;
23 public final static int ENCODER_LEFT_B = 4;
24 public final static int ENCODER_RIGHT_A = 2;
25 public final static int ENCODER_RIGHT_B = 1;
26 }
38a404b3 27
99d3a628
KZ
28 public static enum Direction {
29 LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
30 }
38a404b3 31}