File tree Expand file tree Collapse file tree
src/main/java/frc/robot/subsystems/manipulator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33import edu .wpi .first .units .measure .Angle ;
44import edu .wpi .first .units .measure .Distance ;
55import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
6- import frc .robot .subsystems .manipulator .ManipulatorIO .ManipulatorIOInputs ;
76
87
98public class Manipulator extends SubsystemBase {
Original file line number Diff line number Diff line change 1+ package frc .robot .subsystems .manipulator .commands ;
2+
3+ import edu .wpi .first .wpilibj2 .command .Command ;
4+ import frc .robot .subsystems .manipulator .Manipulator ;
5+
6+ public class GoToCmd extends Command {
7+
8+ public GoToCmd (Manipulator manipulator ) {}
9+
10+ @ Override
11+ public void initialize () {}
12+
13+ @ Override
14+ public boolean isFinished () {return true ;}
15+
16+ @ Override
17+ public void execute () {}
18+
19+ @ Override
20+ public void end (boolean canceled ) {}
21+ }
You can’t perform that action at this time.
0 commit comments