Skip to content

Commit

Permalink
Elevator power levels tweaked
Browse files Browse the repository at this point in the history
The motors now run at a power level of 20 (1200/60) up and down (I don't actually know how fast this is)
  • Loading branch information
Ith9 committed Dec 6, 2024
1 parent 4544f02 commit b3e6d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/elevator/Elevator.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class Elevator extends SubsystemBase {
// RPM
public enum ElevatorVelocityTarget {
IDLE(0, 0),
UP(7500, 7500),
UP(1200, 1200),
DOWN(1200, 1200);
private int leftVelocity, rightVelocity;

Expand Down

0 comments on commit b3e6d87

Please sign in to comment.