mirror of
https://github.com/Team4388/2025RidgeScape.git
synced 2026-06-09 00:38:02 -06:00
lidar debugging
This commit is contained in:
@@ -237,7 +237,7 @@ public final class Constants {
|
|||||||
public static final Trim X_OFFSET_TRIM = new Trim("X Offset Trim", Double.MAX_VALUE, -Double.MAX_VALUE, 0.05, 0);
|
public static final Trim X_OFFSET_TRIM = new Trim("X Offset Trim", Double.MAX_VALUE, -Double.MAX_VALUE, 0.05, 0);
|
||||||
|
|
||||||
public static final int LIDAR_DETECT_DISTANCE = 100; // Min distance to detect pole
|
public static final int LIDAR_DETECT_DISTANCE = 100; // Min distance to detect pole
|
||||||
public static final int LIDAR_DIO_CHANNEL = 0;
|
public static final int LIDAR_DIO_CHANNEL = 2;
|
||||||
public static final int LIDAR_MICROS_TO_CM = 10;
|
public static final int LIDAR_MICROS_TO_CM = 10;
|
||||||
public static final int SECONDS_TO_MICROS = 1000000;
|
public static final int SECONDS_TO_MICROS = 1000000;
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ public class LidarAlign extends Command {
|
|||||||
@Override
|
@Override
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
this.currentFinderTick = 0;
|
this.currentFinderTick = 0;
|
||||||
this.speed = 0.05; // TODO: find good speed for this
|
this.speed = 0.1; // TODO: find good speed for this
|
||||||
this.foundReef = false;
|
this.foundReef = false;
|
||||||
this.headedRight = constructedHeadedRight;
|
this.headedRight = constructedHeadedRight;
|
||||||
}
|
}
|
||||||
@@ -76,10 +76,10 @@ public class LidarAlign extends Command {
|
|||||||
// Returns true when the command should end.
|
// Returns true when the command should end.
|
||||||
@Override
|
@Override
|
||||||
public boolean isFinished() {
|
public boolean isFinished() {
|
||||||
if (foundReef && lidar.withinDistance()) {
|
if (foundReef && lidar.withinDistance()) { // spot on
|
||||||
swerveDrive.stopModules();
|
swerveDrive.stopModules();
|
||||||
return true;
|
return true;
|
||||||
} else if (foundReef && !lidar.withinDistance()) {
|
} else if (foundReef && !lidar.withinDistance()) { // over shot
|
||||||
speed = speed / 2;
|
speed = speed / 2;
|
||||||
headedRight = !headedRight;
|
headedRight = !headedRight;
|
||||||
currentFinderTick = 0;
|
currentFinderTick = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user