This commit is contained in:
Antoine PerreaultE
2024-02-27 18:05:13 -05:00
parent 40b23cf3f1
commit 36859ec3ad
2 changed files with 10 additions and 6 deletions

View File

@@ -18,13 +18,13 @@ public class RestGyro extends Command {
// Called when the command is initially scheduled.
@Override
public void initialize() {}
public void initialize() {
drive.restgyroscope();
}
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
drive.restgyroscope();
}
public void execute() {}
// Called once the command ends or is interrupted.
@Override