Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFTC committed Feb 9, 2022
2 parents 0f0c4d5 + 0835bf1 commit d589f7e
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package org.firstinspires.ftc.teamcode.opmodes.tuningOpModes;

import com.qualcomm.robotcore.eventloop.opmode.Autonomous;

import org.firstinspires.ftc.teamcode.commandBase.autoActions.SlideControl.GoToHighDeposit;
import org.firstinspires.ftc.teamcode.templateOpModes.BaseAuto;
@Autonomous
public class TuneSlideAuto extends BaseAuto {
@Override
public void setStartingPosition() {

}

@Override
public void setVisionSettings() {

}

@Override
public void addActions() {
actions.add(new GoToHighDeposit(robot));
}
}

0 comments on commit d589f7e

Please sign in to comment.