Stash update

This commit is contained in:
2026-06-02 15:57:31 -05:00
parent 184ec893a4
commit aabc746a2e
2 changed files with 19 additions and 2 deletions

View File

@@ -33,11 +33,10 @@ public class Shooter {
if (redAlliance) {
goalX = 144;
goalY = 144;
} else {
goalX = 0;
goalY = 144;
}
goalY = 144;
}
public void setRedAlliance(boolean input) {

View File

@@ -0,0 +1,18 @@
package org.firstinspires.ftc.teamcode.utilsv2;
import com.acmerobotics.dashboard.telemetry.MultipleTelemetry;
import com.qualcomm.robotcore.hardware.Servo;
import org.firstinspires.ftc.teamcode.utils.Robot;
public class Spindexer {
private Servo spin1;
private Servo spin2;
public Spindexer (Robot rob, MultipleTelemetry TELE) {
}
}