Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/main/java/frc/robot/constants/ConstDrivetrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@ public class ConstDrivetrain {
public static final Time ROTATION_DELAY = Seconds.of(0.5);

// TODO: Swoffsets
public static final Angle FRONT_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.189697265625);
public static final Angle FRONT_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(0.0703125);
public static final Angle BACK_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.45263671875);
public static final Angle FRONT_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.1904296875);
public static final Angle FRONT_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(0.060791015625);
public static final Angle BACK_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.451416015625);
public static final Angle BACK_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(-0.3203125);

public static class PRACTICE_BOT {
// TODO: Swoffsets
public static final Angle FRONT_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.199462890625);
public static final Angle FRONT_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(0.474365234375);
public static final Angle BACK_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.447265625);
public static final Angle BACK_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(-0.3193359375);
public static final Angle FRONT_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.1904296875);
public static final Angle FRONT_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(0.0693359375);
public static final Angle BACK_LEFT_ABS_ENCODER_OFFSET = Rotations.of(-0.45361328125);
public static final Angle BACK_RIGHT_ABS_ENCODER_OFFSET = Rotations.of(-0.31884765625);
}

public static final double SLOW_MODE_MULTIPLIER = 0.5;
Expand Down
Loading