forked from FIRST-Tech-Challenge/FtcRobotController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
21 lines (18 loc) · 776 Bytes
/
Constants.java
File metadata and controls
21 lines (18 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.firstinspires.ftc.teamcode;
public final class Constants {
public static class Drivetrain {
public static final String flMotorName = "frontLeftDrive";
public static final String frMotorName = "frontRightDrive";
public static final String blMotorName = "backLeftDrive";
public static final String brMotorName = "backRightDrive";
}
public static class Shooter {
public static final String shooterMotorName = "shooterMotor";
public static final double defaultSpeed = 1;
}
public static class Intake {
public static final String intakeMotorName = "intakeMotor";
public static final String rampMotorName = "rampMotor";
public static final double defaultSpeed = 0.5;
}
}