Prepared Autonomous and TeleOp Workspaces

This commit is contained in:
Nathaniel Palme
2020-12-01 18:51:13 -06:00
parent 92e4bd6395
commit 6eb0f4e971
5 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
package org.timecrafters.UltimateGoal;
public class AutoEngine {
}

View File

@@ -47,7 +47,7 @@ public class MecanumFunctionTest extends CyberarmState {
double[] powers = robot.getMecanumPowers(leftJoystickDegrees, leftJoystickMagnitude, leftJoystickDegrees);
powerFrontLeft = powers[0];
powerFrontRight = powers[1];
powerBackLeft = powers[2];
powerBackLeft = powers[2];
powerBackRight = powers[3];
} else {
if (leftJoystickMagnitude == 0) {

View File

@@ -74,12 +74,12 @@ public class Robot {
public double locationY;
private float rotation;
//Debugging
public double visionX;
public double visionY;
public float rawAngle;
private String TestingRecord = "X,Y,Angle";
public double traveledLeft;
public double traveledRight;

View File

@@ -0,0 +1,4 @@
package org.timecrafters.UltimateGoal;
public class TeleOpEngine {
}

View File

@@ -0,0 +1,4 @@
package org.timecrafters.UltimateGoal;
public class TeleOpState {
}