Skip to content

Commit 70bd5de

Browse files
committed
updated the collect angle to improve collections, updated the barge sequence to deal with faster elevator
1 parent 2bdd2c0 commit 70bd5de

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/frc/robot/commands/robot/algaenet/AlgaeNetWhileMovingCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class AlgaeNetWhileMovingCmd extends Command {
2929
static LinearVelocity kMaxVel = MetersPerSecond.of(1.0) ;
3030
static LinearAcceleration kMaxAcc = MetersPerSecondPerSecond.of(2.0) ;
31-
static Distance kShootDistance = Centimeters.of(160) ;
31+
static Distance kShootDistance = Centimeters.of(120) ;
3232

3333
private enum State {
3434
Idle,

src/main/java/frc/robot/subsystems/manipulator/ManipulatorConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class Positions {
110110
public static final Angle kPlaceL2L3TwoCoralAdder = Degrees.of(0) ;
111111
public static final Angle kFinishedAlgaeThreshhold = Degrees.of(150.0) ;
112112
public static final Angle kKickbackAngle = Degrees.of(19);
113-
public static final Angle kCollect = Degrees.of(16) ;
113+
public static final Angle kCollect = Degrees.of(14) ;
114114

115115
public static final Angle kAlgaeReefHold = Degrees.of(170) ;
116116
public static final Angle kScoreAlgaeReef = Degrees.of(229) ; // Was 190

0 commit comments

Comments
 (0)