Skip to content

Commit c9b3050

Browse files
committed
updating currents
1 parent d53ab38 commit c9b3050

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/deploy/tuning/arc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"points" : [
77
{
88
// Shoot cmd
9-
"distance" : 1.18,
10-
"velocity" : 50.0
9+
"distance" : 1.24,
10+
"velocity" : 51.0
1111
},
1212
{
1313
// Shoot cmd
@@ -17,7 +17,7 @@
1717
{
1818
// Shoot cmd
1919
"distance" : 1.7,
20-
"velocity" : 55.0
20+
"velocity" : 56.0
2121
}
2222
]
2323
},

src/main/java/frc/robot/subsystems/intake/IntakeConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class IntakeConstants {
2222
public static final int pivotMotorCANID = 8;
2323
public static final int pivotEncoderCANID = 7;
2424

25-
public static final Current rollerCurrentLimit = Amps.of(60);
25+
public static final Current rollerCurrentLimit = Amps.of(70);
2626
public static final Time rollerCurrentLimitTime = Milliseconds.of(200);
2727

2828
public static final Current pivotCurrentLimit = Amps.of(40);

src/main/java/frc/robot/subsystems/shooter/ShooterConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class ShooterConstants {
1919
public static final int shooter2CANID = 1;
2020
public static final int shooter3CANID = 2;
2121

22-
public static final Current currentLimit = Amps.of(50);
22+
public static final Current currentLimit = Amps.of(80);
2323
public static final Time currentLimitTime = Seconds.of(0.2);
2424

2525
//

0 commit comments

Comments
 (0)