File tree 4 files changed +12
-9
lines changed
4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ public static class ArmConstants {
172
172
public static final double LIFT_HEIGHT_2 = 2 ;
173
173
public static final double LIFT_HEIGHT_3 = 3 ;
174
174
175
- public static final double LIFT_SPEED = 0.05 ;
175
+ public static final double LIFT_SPEED = 0.1 ;
176
176
public static final double CORAL_INTAKE_SPEED = 0.03 ;
177
177
}
178
178
Original file line number Diff line number Diff line change @@ -83,6 +83,6 @@ private void configureBindings() {
83
83
*/
84
84
public Command getAutonomousCommand () {
85
85
// An example command will be run in autonomous
86
- return Autos .driveStraight (m_driveSubsystem , 3 );
86
+ return Autos .driveStraight (m_driveSubsystem , m_armSubsystem );
87
87
}
88
88
}
Original file line number Diff line number Diff line change 4
4
5
5
package frc .robot .commands ;
6
6
7
+ import frc .robot .Constants ;
8
+ import frc .robot .subsystems .ArmSubsystem ;
7
9
import frc .robot .subsystems .DriveSubsystem ;
8
10
import frc .robot .subsystems .ExampleSubsystem ;
9
11
import edu .wpi .first .wpilibj2 .command .Command ;
@@ -18,15 +20,17 @@ public static Command exampleAuto(ExampleSubsystem subsystem) {
18
20
}
19
21
20
22
/** Drives for a certain number of seconds. */
21
- public static Command driveStraight (DriveSubsystem drive , double seconds ) {
23
+ public static Command driveStraight (DriveSubsystem drive , ArmSubsystem arm ) {
22
24
return new InstantCommand (() -> drive .drive (0.0 , 0.5 , 0.0 ))
23
- .andThen (new WaitCommand (seconds ))
24
- .andThen (() -> drive .drive (0.0 , 0.0 , 0.0 ));
25
+ .andThen (new WaitCommand (1.5 ))
26
+ .andThen (() -> drive .drive (0.0 , 0.0 , 0.0 ))
27
+ .andThen (() -> arm .setArmSpeed (Constants .ArmConstants .LIFT_SPEED ))
28
+ .andThen (new WaitCommand (0.5 ))
29
+ .andThen (() -> arm .setArmSpeed (0 ));
25
30
}
26
31
27
32
private Autos () {
28
33
throw new UnsupportedOperationException ("This is a utility class!" );
29
34
}
30
35
31
-
32
36
}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
74
74
liftConfig .closedLoop .feedbackSensor (FeedbackSensor .kPrimaryEncoder );
75
75
76
76
SparkMaxConfig followLiftConfig = new SparkMaxConfig ();
77
- followLiftConfig .follow ( Constants . ArmConstants . LEFT_LIFT_CAN_ID ). apply (liftConfig );
77
+ followLiftConfig .apply (liftConfig );
78
78
79
79
80
80
SparkMaxConfig coralConfig = new SparkMaxConfig ();
@@ -83,7 +83,6 @@ public ArmSubsystem(InputSubsystem inputSubsystem) {
83
83
SparkMaxConfig followCoralConfig = new SparkMaxConfig ();
84
84
followCoralConfig .follow (Constants .ArmConstants .LEFT_CORAL_CAN_ID ).apply (coralConfig );
85
85
86
-
87
86
followLiftConfig .follow (Constants .ArmConstants .LEFT_LIFT_CAN_ID , true );
88
87
followCoralConfig .follow (Constants .ArmConstants .LEFT_CORAL_CAN_ID , true );
89
88
@@ -123,7 +122,7 @@ public void periodic() {
123
122
down) and +1.0 (full speed up.) 0 stops the arm from moving.
124
123
*/
125
124
public void setArmSpeed (double speed ) {
126
- // armSpeed = speed;
125
+ armSpeed = speed ;
127
126
System .out .println ("Moving arm at " + (speed * 100 ) + "%" );
128
127
}
129
128
You can’t perform that action at this time.
0 commit comments