From 946deca751c97b1da05ac4f0365513513bfe7566 Mon Sep 17 00:00:00 2001 From: DanTheMan-byte Date: Tue, 2 Jun 2026 17:04:45 -0500 Subject: [PATCH] middle of tuning --- .../org/firstinspires/ftc/teamcode/pedroPathing/Tuning.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/pedroPathing/Tuning.java b/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/pedroPathing/Tuning.java index 55cc2fc..7d55931 100644 --- a/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/pedroPathing/Tuning.java +++ b/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/pedroPathing/Tuning.java @@ -416,7 +416,7 @@ class ForwardVelocityTuner extends OpMode { if (!end) { - if (Math.abs(follower.getPose().getX()) > (DISTANCE + 72)) { + if (Math.abs(follower.getPose().getX()) > (DISTANCE)) { end = true; stopRobot(); } else { @@ -524,7 +524,7 @@ class LateralVelocityTuner extends OpMode { drawCurrentAndHistory(); if (!end) { - if (Math.abs(follower.getPose().getY()) > (DISTANCE + 72)) { + if (Math.abs(follower.getPose().getY()) > (DISTANCE)) { end = true; stopRobot(); } else {