Skip to content

Commit

Permalink
Fixes during columbus
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Mar 22, 2022
1 parent a10579b commit 8995687
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PathWeaver/Paths/UniversalDriveBack
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
X,Y,Tangent X,Tangent Y,Fixed Theta,Reversed,Name
7.16068192,-3.31259714,2.08278878,-1.00450576,true,true,
5.36165183,-2.42727003,1.1463851,-0.573192552,true,true,
5.10059383235839,-2.3080913830614396,1.1463851,-0.573192552,true,true,
2 changes: 1 addition & 1 deletion src/main/java/org/pikerobodevils/frc2022/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static class DrivetrainConstants {
public static final int RIGHT_ENCODER_A = 2;
public static final int RIGHT_ENCODER_B = 3;

public static final int CURRENT_LIMIT_PER_MOTOR = 30;
public static final int CURRENT_LIMIT_PER_MOTOR = 40;

public static final double DISTANCE_PER_PULSE_METERS = Units.inchesToMeters(Math.PI * 6) / 256;

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/pikerobodevils/frc2022/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import edu.wpi.first.wpilibj.livewindow.LiveWindow;
import edu.wpi.first.wpilibj.util.WPILibVersion;
import edu.wpi.first.wpilibj2.command.*;
import io.github.oblarg.oblog.Logger;
import org.pikerobodevils.frc2022.subsystems.Climber;
import org.pikerobodevils.frc2022.subsystems.Drivetrain;
import org.pikerobodevils.lib.Util;
Expand Down Expand Up @@ -63,7 +62,6 @@ public void robotInit() {
public void robotPeriodic() {
CommandScheduler.getInstance().run();
dashboard.updateEntries();
Logger.updateEntries();
}

@Override
Expand Down

0 comments on commit 8995687

Please sign in to comment.