Skip to content

Commit

Permalink
change current limit to 80 + remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
cire694 committed Jan 24, 2024
1 parent 96b0072 commit 4559ec8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/stuypulse/robot/constants/Motors.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public interface Motors {

public interface Conveyor{

CANSparkMaxConfig GANDALF_MOTOR = new CANSparkMaxConfig(false, IdleMode.kBrake, 40);
CANSparkMaxConfig SHOOTER_FEEDER_MOTOR = new CANSparkMaxConfig(false, IdleMode.kCoast, 40);
CANSparkMaxConfig GANDALF_MOTOR = new CANSparkMaxConfig(false, IdleMode.kBrake);
CANSparkMaxConfig SHOOTER_FEEDER_MOTOR = new CANSparkMaxConfig(false, IdleMode.kCoast);
}

public static class TalonSRXConfig {
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/stuypulse/robot/constants/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

package com.stuypulse.robot.constants;

import com.stuypulse.robot.Robot;
import com.stuypulse.stuylib.network.SmartBoolean;
import com.stuypulse.stuylib.network.SmartNumber;

/*-
Expand Down

0 comments on commit 4559ec8

Please sign in to comment.