Skip to content

Commit e6243be

Browse files
committed
Swapped the direction of the green servo.
1 parent 64f61d5 commit e6243be

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

TeamCode/src/main/java/org/mrpsvt/capital_robotics/teleop/full_bot_w_load.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public class full_bot_w_load extends OpMode {
3030
private static final int RAMP_RATE = 900; // smaller step = smoother ramp
3131

3232
// Servo position constants
33-
private static final double CLAW_CLOSED = 1.0;
34-
private static final double CLAW_OPEN = 0.1;
33+
private static final double CLAW_CLOSED = 0.1;
34+
private static final double CLAW_OPEN = 1.0;
3535
private static final double loop_close = 5;
3636

3737
// Track flywheel velocity for ramping

TeamCode/src/main/java/org/mrpsvt/capital_robotics/teleop/lights.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ private enum LedMode { AUTO, RED, GREEN, BLUE, WHITE, OFF }
4646
// Constants
4747
private static final int TARGET_FLYWHEEL = 999999;
4848
private static final int RAMP_RATE = 900;
49-
private static final double CLAW_CLOSED = 1.0;
50-
private static final double CLAW_OPEN = 0.25;
49+
private static final double CLAW_CLOSED = 0.1;
50+
private static final double CLAW_OPEN = 1.0;
5151
private static final double LOOP_CLOSE = 5.0;
5252
private static final double BOB = 6000;
5353

0 commit comments

Comments
 (0)