This commit is contained in:
samuel desharnais
2024-02-21 18:48:46 -05:00
parent 6c4dfc9ddb
commit c13d1ecf2c
3 changed files with 7 additions and 3 deletions

View File

@@ -20,7 +20,9 @@ public class LancerAmp extends Command {
// Called when the command is initially scheduled.
@Override
public void initialize(){}
public void initialize(){
lancer.pid();
}
// Called every time the scheduler runs while the command is scheduled.
@Override

View File

@@ -21,7 +21,9 @@ public class LancerNote extends Command {
// Called when the command is initially scheduled.
@Override
public void initialize() {}
public void initialize() {
lancer.pid();
}
// Called every time the scheduler runs while the command is scheduled.
@Override