Compare commits
2 Commits
34def57ec8
...
2328788f0a
Author | SHA1 | Date | |
---|---|---|---|
2328788f0a | |||
8918eeea55 |
@ -31,7 +31,7 @@ public class PedroConstants {
|
||||
/*
|
||||
Motor Max Power
|
||||
*/
|
||||
public static final double MAX_POWER = .75;
|
||||
public static final double MAX_POWER = .50;
|
||||
|
||||
/*
|
||||
IMU
|
||||
|
@ -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