Skip to content

Commit

Permalink
Increase max shoulder angle
Browse files Browse the repository at this point in the history
  • Loading branch information
Prog694 committed Apr 10, 2023
1 parent 4a886ce commit be23237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/stuypulse/robot/constants/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public interface Turn {
public interface Arm {

public interface Shoulder {
SmartNumber MAX_SHOULDER_ANGLE = new SmartNumber("Arm/Shoulder/Max Angle (deg)", 10.0);
SmartNumber MAX_SHOULDER_ANGLE = new SmartNumber("Arm/Shoulder/Max Angle (deg)", 15.0);
SmartNumber OVER_BUMPER_ANGLE = new SmartNumber("Arm/Shoulder/Over Bumper Angle (deg)", 25.0);

int MOTORS = 2;
Expand Down Expand Up @@ -323,7 +323,7 @@ public interface Operator {

public interface Driver {
public interface Drive {
SmartNumber DEADBAND = new SmartNumber("Driver Settings/Drive/Deadband", 0.08);
SmartNumber DEADBAND = new SmartNumber("Driver Settings/Drive/Deadband", 0.10);

SmartNumber RC = new SmartNumber("Driver Settings/Drive/RC", 0.125);
SmartNumber POWER = new SmartNumber("Driver Settings/Drive/Power", 2);
Expand Down

0 comments on commit be23237

Please sign in to comment.