Skip to content

Commit

Permalink
FinalRomiProgram
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmedBot22 committed Dec 14, 2023
1 parent bec7df0 commit 119c1a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "java"
id "edu.wpi.first.GradleRIO" version "2023.4.2"
id "edu.wpi.first.GradleRIO" version "2023.4.3"
// START: Setup spotless
id 'com.diffplug.spotless' version '6.18.0'
// END: Setup spotless
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/commands/ArcadeDrive.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void initialize() {}
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
m_drivetrain.arcadeDriveKinematics(m_xaxisSpeedSupplier.get()*0.5, m_zaxisRotateSupplier.get()*0.5);
m_drivetrain.arcadeDriveKinematics(m_xaxisSpeedSupplier.get()*0.75, m_zaxisRotateSupplier.get()*0.5);
}

// Called once the command ends or is interrupted.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/commands/ArmCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class ArmCommand extends CommandBase {
64; // to reduce stick sensitivity, this value indicates how much to scale the returned speed
// by
private final double m_minBaseRange = 0.2; // min range for the arm's base
private final double m_maxBaseRange = 0.5; // max range for the arm's base
private final double m_maxBaseRange = 0.525; // max range for the arm's base

public ArmCommand(Arm arm, DoubleSupplier baseSpeed) {
m_arm = arm;
Expand Down

0 comments on commit 119c1a0

Please sign in to comment.