Fix open/close claw values
This commit is contained in:
@ -107,6 +107,7 @@ public class CometBotTeleopCompetition {
|
||||
this.telemetry.addData("Arm State", this.arm.getState());
|
||||
this.telemetry.addData("Lift State", this.lift.getState());
|
||||
this.telemetry.addData("Lift Position", this.lift.getPosition());
|
||||
this.telemetry.addData("MaxPower", MAX_POWER);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -4,8 +4,8 @@ import com.acmerobotics.dashboard.config.Config;
|
||||
|
||||
@Config
|
||||
public class RobotConstants {
|
||||
public final static double clawClose = 0.5;
|
||||
public final static double clawOpen = 0.05;
|
||||
public final static double clawOpen = 0.5;
|
||||
public final static double clawClose = 0.05;
|
||||
|
||||
public final static double armFloor = 0.7;
|
||||
public final static double armSubmarine = 0.55;
|
||||
|
Reference in New Issue
Block a user