power-play/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/config/ConfigSleeveVariantB.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
391 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 Variant B", group = "Config")
public class ConfigSleeveVariantB extends LinearOpMode {
@Override
public void runOpMode() {
RuntimeConfig.SIGNAL_SLEEVE_VARIANT = 1;
}
}