Skip to content

Commit 600c486

Browse files
committed
IDS
1 parent d72a06d commit 600c486

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/frc/robot/Constants.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ public static class ScoringConstants {
2424

2525
public static class IntakeConstants {
2626
public static final int INTAKE_VOLTAGE = 3;
27-
public static final int INTAKE_MOTOR_ID = 15;
27+
public static final int INTAKE_MOTOR_ID = 12;
2828

2929
public static final int STALL_MOTOR_CURRENT = 40;
3030
public static final int FREE_MOTOR_CURRENT = 20;
3131
}
3232

3333
public static class SlapdownConstants {
3434

35-
public static final int FEEDER_MOTOR_ID = 16;
36-
public static final int ROTATION_MOTOR_ID = 17;
35+
public static final int FEEDER_MOTOR_ID = 14;
36+
public static final int ROTATION_MOTOR_ID = 13;
3737
public static final double ROTATION_GEAR_RATIO = 5.0 * 3.0 * 30.0 / 15.0;
3838

3939
public static final int FEED_STALL_MOTOR_CURRENT = 20;
@@ -60,7 +60,7 @@ public static class ElevatorConstants {
6060
public static final int STALL_MOTOR_CURRENT = 45;
6161
public static final int FREE_MOTOR_CURRENT = 25;
6262

63-
public static final int ELEVATOR_MOTOR_ID = 14;
63+
public static final int ELEVATOR_MOTOR_ID = 15;
6464

6565
public static final int ELEVATOR_LIMIT_SWITCH = 2;
6666

@@ -146,18 +146,18 @@ private SwerveConstants() {}
146146

147147
public static final SwerveModuleConfiguration FRONT_LEFT_MODULE_CONFIGURATION =
148148
new SwerveModuleConfiguration(
149-
1, 4, 9, false, true, -0.7455146908760071, false, SHARED_SWERVE_MODULE_CONFIGURATION);
149+
1, 5, 17, false, true, -0.7455146908760071, false, SHARED_SWERVE_MODULE_CONFIGURATION);
150150
public static final SwerveModuleConfiguration FRONT_RIGHT_MODULE_CONFIGURATION =
151151
new SwerveModuleConfiguration(
152-
2, 6, 10, false, true, 2.7857091108003242, false, SHARED_SWERVE_MODULE_CONFIGURATION);
152+
2, 6, 18, false, true, 2.7857091108003242, false, SHARED_SWERVE_MODULE_CONFIGURATION);
153153

154154
public static final SwerveModuleConfiguration BACK_LEFT_MODULE_CONFIGURATION =
155155
new SwerveModuleConfiguration(
156-
3, 7, 11, false, true, 2.676796474860444, false, SHARED_SWERVE_MODULE_CONFIGURATION);
156+
3, 7, 19, false, true, 2.676796474860444, false, SHARED_SWERVE_MODULE_CONFIGURATION);
157157

158158
public static final SwerveModuleConfiguration BACK_RIGHT_MODULE_CONFIGURATION =
159159
new SwerveModuleConfiguration(
160-
4, 8, 12, false, true, -2.4605051837685683, false, SHARED_SWERVE_MODULE_CONFIGURATION);
160+
4, 8, 20, false, true, -2.4605051837685683, false, SHARED_SWERVE_MODULE_CONFIGURATION);
161161
}
162162

163163
public static class AutoConstants {
@@ -197,7 +197,7 @@ public static class WristConstants {
197197
public static final Rotation2d WRIST_MAX = new Rotation2d(Units.degreesToRadians(60));
198198
public static final Rotation2d WRIST_MIN = new Rotation2d(0);
199199

200-
public static final int WRIST_MOTOR_ID = 11;
200+
public static final int WRIST_MOTOR_ID = 9;
201201
public static final int STALL_MOTOR_CURRENT = 45;
202202
public static final int FREE_MOTOR_CURRENT = 25;
203203

@@ -212,7 +212,7 @@ public static class WristConstants {
212212
}
213213

214214
public static class TransportConstants {
215-
public static final int TRANSPORT_MOTOR_ID = 0;
215+
public static final int TRANSPORT_MOTOR_ID = 11;
216216
public static final int STALL_MOTOR_CURRENT = 45;
217217
public static final int FREE_MOTOR_CURRENT = 25;
218218
public static final double TRANSPORT_VOLTAGE = 2.0;
@@ -222,7 +222,7 @@ public static class ShooterConstants {
222222
public static final int FREE_MOTOR_CURRENT = 25;
223223
public static final int STALL_MOTOR_CURRENT = 45;
224224

225-
public static final int SHOOTER_ID = 18;
225+
public static final int SHOOTER_ID = 10;
226226

227227
public static final double SHOOTING_RPM = 3000.0;
228228

0 commit comments

Comments
 (0)