fixed speed issue with arm

This commit is contained in:
Spencer
2021-11-25 08:53:03 -06:00
parent c4bd4acf2b
commit 7df503d7c5

View File

@@ -14,8 +14,8 @@ public class TeleOpState extends CyberarmState {
public TeleOpState(Robot robot) {
this.robot = robot;
maxDriveSpeed = 1;
maxCollectorArmSpeed = 0.1;
maxDepositorArmSpeed = 0.1;
maxCollectorArmSpeed = 1;
maxDepositorArmSpeed = 1;
maxArmTravelDistance = 4000;
}