Added a grabber, and added controller support

This commit is contained in:
2025-07-09 14:11:16 -04:00
parent c38c3d1213
commit 0bf71c7161
4 changed files with 63 additions and 3 deletions

View File

@@ -18,4 +18,8 @@ public class Arm extends SubsystemBase {
motor.set(speed);
});
}
public Command stop() {
return run(() -> motor.set(0));
}
}