Skip to content

Commit e172dd2

Browse files
braelynandthefrogskevinfrei
authored andcommitted
fixed some values, changed some speeds, please merge
1 parent 6f191e1 commit e172dd2

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Twenty403/src/main/java/org/firstinspires/ftc/twenty403/commands/arm/ArmSecondLineCommand.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package org.firstinspires.ftc.twenty403.commands.arm;
22

3+
import com.acmerobotics.dashboard.config.Config;
34
import com.technototes.library.command.Command;
45
import org.firstinspires.ftc.twenty403.subsystems.ArmSubsystem;
5-
6+
@Config
67
public class ArmSecondLineCommand implements Command {
78

89
private ArmSubsystem subsystem;

Twenty403/src/main/java/org/firstinspires/ftc/twenty403/subsystems/ArmSubsystem.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public class ArmSubsystem implements Subsystem, Loggable {
2828
public static double MIN_HANG_SPEED = -1;
2929
public static double MAX_HANG_SPEED = 1;
3030

31-
public static double MIN_INTAKE_SPEED = -1;
32-
public static double MAX_INTAKE_SPEED = 1;
33-
public static double SPIT_SPEED = -.3;
31+
public static double MIN_INTAKE_SPEED = -.5;
32+
public static double MAX_INTAKE_SPEED = .5;
33+
public static double SPIT_SPEED = -.2;
3434

3535
public static double WRIST_ARM_INTAKE = 0.7; //collect (change vals)
3636
public static double WRIST_RESET_POSITION = 0.2; //reset (change vals)

Twenty403/src/main/java/org/firstinspires/ftc/twenty403/subsystems/DrivebaseSubsystem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public abstract static class DriveConstants implements MecanumConstants {
3131

3232
public static double SLOW_MOTOR_SPEED = 0.4;
3333
public static double SLOW_ROTATION_SCALE = 0.5;
34-
public static double NORMAL_MOTOR_SPEED = 1.2;
34+
public static double NORMAL_MOTOR_SPEED = 1.5;
3535
public static double NORMAL_ROTATION_SCALE = 0.3;
3636
public static double TRIGGER_THRESHOLD = 0.7;
3737

0 commit comments

Comments
 (0)