-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
30 lines (20 loc) · 829 Bytes
/
Constants.java
File metadata and controls
30 lines (20 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package frc.robot;
public class Constants {
public static class ControllerConstants {
public static final int DRIVER_CONTROLLER_PORT = 0;
public static final int OPERATOR_CONTROLLER_PORT = 1;
// Joystick Deadband
public static final double LEFT_X_DEADBAND = 0.1;
public static final double LEFT_Y_DEADBAND = 0.1;
public static final double RIGHT_X_DEADBAND = 0.1;
}
public static class LoggingConstants {
public static final boolean DEFAULT_LOGGING_STATE = false;
}
public static class CosmeticConstants {
public static final int LIGHT_ID = 9;
public static final double SOLID_YELLOW_VALUE = 0.69;
public static final double SOLID_PURPLE_VALUE = 0.91;
public static final int LIGHT_LENGTH = 76;
}
}