power-play/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/config/ConfigSleeve123.java
missing 8cdd3dd447 literally everything ive done over the past >2 months in one commit lol
most important stuff: kinematics, autons, config, dashboard, easyopencv + april tags, and probably more im forgetting

https://xkcd.com/1296/
2023-01-23 23:52:26 -06:00

13 lines
394 B
Java

package org.firstinspires.ftc.teamcode.config;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
@Autonomous(name = "Signal Sleeve With Tags 1, 2, 3", group = "Config")
public class ConfigSleeve123 extends LinearOpMode {
@Override
public void runOpMode() {
RuntimeConfig.SIGNAL_SLEEVE_VARIANT = 3;
}
}