This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- package frc .robot .note_assist ;
1
+ package frc .robot .intake_assist ;
2
2
3
3
import frc .robot .imu .ImuSubsystem ;
4
4
import frc .robot .localization .LocalizationSubsystem ;
5
5
import frc .robot .swerve .SwerveSubsystem ;
6
6
import frc .robot .util .scheduling .LifecycleSubsystem ;
7
7
import frc .robot .util .scheduling .SubsystemPriority ;
8
8
9
- public class NoteAssistManager extends LifecycleSubsystem {
9
+ public class IntakeAssistManager extends LifecycleSubsystem {
10
10
private static final String LIMELIGHT_NAME = "limelight-note" ;
11
11
private final LocalizationSubsystem localization ;
12
12
private final SwerveSubsystem swerve ;
13
13
private final ImuSubsystem imu ;
14
14
15
- public NoteAssistManager (
15
+ public IntakeAssistManager (
16
16
LocalizationSubsystem localization , SwerveSubsystem swerve , ImuSubsystem imu ) {
17
- super (SubsystemPriority .NOTE_ASSIST_MANAGER );
17
+ super (SubsystemPriority .INTAKE_ASSIST_MANAGER );
18
18
19
19
this .localization = localization ;
20
20
this .swerve = swerve ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public enum SubsystemPriority {
24
24
// Robot manager runs last so that all sensor data is fresh before processing state transitions
25
25
ROBOT_MANAGER (0 ),
26
26
AUTOS (0 ),
27
- NOTE_ASSIST_MANAGER (0 );
27
+ INTAKE_ASSIST_MANAGER (0 );
28
28
29
29
final int value ;
30
30
You can’t perform that action at this time.
0 commit comments