Skip to content

Commit e6591b8

Browse files
FRC1FRC1
FRC1
authored and
FRC1
committed
Updated ArmSubsystem control scheme, finished periodic.
Added 2 new functions to InputSubsystem: - Added a control scheme for the lift to move the motors while holding down button (most likely what we'll use at the competition) - Made a function for the coral intake Finished implementing the PID controller and state machine control scheme. Also updated the motor configurations based on recent changes to the robot design. * All values for the ArmSubsystem and DriveSubsystem movement need to be tested.
1 parent f4a0bc1 commit e6591b8

File tree

5 files changed

+81
-27
lines changed

5 files changed

+81
-27
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ Code for the ESHS P.O.T.A.T.O.E.S. swerve drive test platform.
55

66
## To-do list
77
1. Temporarily disable feedForward mechanism (example code) to see what PID controller does, and vice versa. Test to see if we like how the feedForward mechanism works with the PID controller
8-
2. Socialize with multiple teams at competitions in order to learn more about robotics in general (buisness cards included)
9-
3. Measure the height of each coral branch and associate number of rotations to each height. Then set each of those values to the corresponding variables in Constants.java.
8+
2. Socialize with multiple teams at competitions in order to learn more about robotics in general (buisness cards included)

src/main/java/frc/robot/Constants.java

+3
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ public static class ArmConstants {
172172
public static final double LIFT_HEIGHT_1 = 1;
173173
public static final double LIFT_HEIGHT_2 = 2;
174174
public static final double LIFT_HEIGHT_3 = 3;
175+
176+
public static final double LIFT_SPEED = 1.0;
177+
public static final double CORAL_INTAKE_SPEED = 0.3;
175178
}
176179

177180
}

src/main/java/frc/robot/RobotContainer.java

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import frc.robot.Constants.DriveConstants.DriveType;
1010
import frc.robot.commands.Autos;
1111
import frc.robot.commands.ExampleCommand;
12+
import frc.robot.subsystems.ArmSubsystem;
1213
import frc.robot.subsystems.DriveSubsystem;
1314
import frc.robot.subsystems.ExampleSubsystem;
1415
import frc.robot.subsystems.InputSubsystem;
@@ -31,6 +32,7 @@ public class RobotContainer {
3132
private final ExampleSubsystem m_exampleSubsystem = new ExampleSubsystem();
3233
private final InputSubsystem m_inputSubsystem = new InputSubsystem();
3334
private final DriveSubsystem m_driveSubsystem = new DriveSubsystem(m_inputSubsystem, DriveType.DIFFERENTIAL_DRIVE);
35+
private final ArmSubsystem m_armSubsystem = new ArmSubsystem(m_inputSubsystem);
3436

3537
// Replace with CommandPS4Controller or CommandJoystick if needed
3638
private final CommandXboxController m_driverController = new CommandXboxController(

src/main/java/frc/robot/subsystems/ArmSubsystem.java

+14-17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.revrobotics.servohub.ServoHub.ResetMode;
55
import com.revrobotics.spark.SparkClosedLoopController;
66
import com.revrobotics.spark.SparkMax;
7+
import com.revrobotics.spark.SparkBase.ControlType;
78
import com.revrobotics.spark.SparkBase.PersistMode;
89
import com.revrobotics.spark.SparkLowLevel.MotorType;
910
import com.revrobotics.spark.config.ClosedLoopConfig;
@@ -18,6 +19,8 @@
1819

1920
public class ArmSubsystem extends SubsystemBase {
2021

22+
private InputSubsystem input;
23+
2124
/**
2225
* Controls the left motor of the 4 bar lift.
2326
*/
@@ -30,31 +33,27 @@ public class ArmSubsystem extends SubsystemBase {
3033
private SparkMax RightLift;
3134

3235
/**
33-
* Left algae intake motor.
36+
* Left coral intake motor.
3437
*/
3538
private SparkMax LeftCoral;
3639

3740
/**
38-
* Right algae intake motor. Similar to the lift motors,
39-
* this will be a follower of the left algae intake motor.
41+
* Right coral intake motor. Similar to the lift motors,
42+
* this will be a follower of the left coral intake motor.
4043
*/
4144
private SparkMax RightCoral;
4245

43-
/**
44-
* Coral intake motor
45-
*/
46-
private SparkMax AlgaeIntake;
4746

4847
private RelativeEncoder leftLiftEncoder;
4948

5049
private SparkClosedLoopController pidController;
5150

52-
public ArmSubsystem() {
51+
public ArmSubsystem(InputSubsystem inputSubsystem) {
52+
input = inputSubsystem;
5353
LeftLift = new SparkMax(Constants.ArmConstants.LEFT_LIFT_CAN_ID, MotorType.kBrushless);
5454
RightLift = new SparkMax(Constants.ArmConstants.RIGHT_LIFT_CAN_ID, MotorType.kBrushless);
5555
LeftCoral = new SparkMax(Constants.ArmConstants.LEFT_CORAL_CAN_ID, MotorType.kBrushless);
5656
RightCoral = new SparkMax(Constants.ArmConstants.RIGHT_CORAL_CAN_ID, MotorType.kBrushless);
57-
AlgaeIntake = new SparkMax(Constants.ArmConstants.ALGAE_INTAKE_CAN_ID, MotorType.kBrushless);
5857

5958
leftLiftEncoder = LeftLift.getEncoder();
6059

@@ -69,11 +68,8 @@ public ArmSubsystem() {
6968
liftConfig.closedLoop.pid(0.1, 0, 0);
7069
liftConfig.closedLoop.feedbackSensor(FeedbackSensor.kPrimaryEncoder);
7170

72-
SparkMaxConfig algaeConfig = new SparkMaxConfig();
73-
algaeConfig.idleMode(IdleMode.kCoast);
74-
7571
SparkMaxConfig coralConfig = new SparkMaxConfig();
76-
coralConfig.idleMode(IdleMode.kCoast);
72+
coralConfig.idleMode(IdleMode.kBrake);
7773

7874
liftConfig.follow(Constants.ArmConstants.LEFT_LIFT_CAN_ID, true);
7975
coralConfig.follow(Constants.ArmConstants.LEFT_CORAL_CAN_ID, true);
@@ -82,7 +78,6 @@ public ArmSubsystem() {
8278
RightLift.configure(liftConfig, com.revrobotics.spark.SparkBase.ResetMode.kResetSafeParameters, PersistMode.kPersistParameters);
8379
LeftCoral.configure(coralConfig, com.revrobotics.spark.SparkBase.ResetMode.kResetSafeParameters, PersistMode.kPersistParameters);
8480
RightCoral.configure(coralConfig, com.revrobotics.spark.SparkBase.ResetMode.kResetSafeParameters, PersistMode.kPersistParameters);
85-
AlgaeIntake.configure(algaeConfig, com.revrobotics.spark.SparkBase.ResetMode.kResetSafeParameters, PersistMode.kPersistParameters);
8681
}
8782

8883
@Override
@@ -93,14 +88,16 @@ public void initSendable(SendableBuilder builder) {
9388
// leader, the LeftMotor. The right motor will be spinning in the opposite direction though.
9489
builder.addDoubleProperty("Lift", () -> LeftLift.get(), (armSpeed) -> LeftLift.set(armSpeed));
9590
builder.addDoubleProperty("Coral", () -> LeftCoral.get(), (intakeSpeed) -> LeftCoral.set(intakeSpeed));
96-
builder.addDoubleProperty("AlgaeIntake", () -> AlgaeIntake.get(), (intakeSpeed) -> AlgaeIntake.set(intakeSpeed));
9791
initSendable(builder);
9892
}
9993

10094
@Override
10195
public void periodic() {
102-
103-
96+
//pidController.setReference(input.getDesiredPosition(), ControlType.kPosition); --> possible other control scheme
97+
LeftLift.set(input.getArmMovement());
98+
if (input.isCoralIntakeActivated()) {
99+
LeftCoral.set(Constants.ArmConstants.CORAL_INTAKE_SPEED);
100+
}
104101
}
105102

106103
}

src/main/java/frc/robot/subsystems/InputSubsystem.java

+61-8
Original file line numberDiff line numberDiff line change
@@ -200,32 +200,85 @@ public double getDesiredPosition() {
200200
Constants.ArmConstants.LIFT_HEIGHT_3};
201201

202202

203-
204203
if(xboxController != null &&xboxController.isConnected() == true) {
205-
if(xboxController.getBButtonPressed() && currentHeight <= 3) {
204+
if(xboxController.getBButtonPressed() && currentHeight <= liftHeights.length) {
206205
currentHeight++;
207-
} else if(xboxController.getXButtonPressed() && currentHeight >=0) {
206+
} else if(xboxController.getAButtonPressed() && currentHeight >= 0) {
208207
currentHeight--;
209208
}
210209
}
211210

212211
if(mainJoystick != null && mainJoystick.isConnected() && secondaryJoystick != null && secondaryJoystick.isConnected()) {
213-
if(secondaryJoystick.getRawButtonPressed(4) && currentHeight <= 3) {
212+
if(secondaryJoystick.getRawButtonPressed(6) && currentHeight <= liftHeights.length) {
214213
currentHeight++;
215-
} else if(secondaryJoystick.getRawButtonPressed(3) && currentHeight >=0) {
214+
} else if(secondaryJoystick.getRawButtonPressed(4) && currentHeight >= 0) {
216215
currentHeight--;
217216
}
218217
} else if(mainJoystick != null && mainJoystick.isConnected()) {
219-
if(mainJoystick.getRawButtonPressed(4) && currentHeight <= 3) {
218+
if(mainJoystick.getRawButtonPressed(6) && currentHeight <= liftHeights.length) {
220219
currentHeight++;
221-
} else if(mainJoystick.getRawButtonPressed(3) && currentHeight >=0) {
220+
} else if(mainJoystick.getRawButtonPressed(4) && currentHeight >= 0) {
222221
currentHeight--;
223222
}
224223
}
225224

225+
return liftHeights[currentHeight];
226+
}
226227

228+
/**
229+
* This is a separte method of controlling the lift of the ArmSubsystem.
230+
* It will move the lift at a constant speed as long as the player is holding down the desired movement button.
231+
* The speed of the lift is dependent on the constant LIFT_SPEED in Constants.java.
232+
*/
233+
public double getArmMovement() {
234+
if(xboxController != null &&xboxController.isConnected() == true) {
235+
if(xboxController.getPOV() > -10 && xboxController.getPOV() < 10) {
236+
return Constants.ArmConstants.LIFT_SPEED;
237+
} else if (xboxController.getPOV() > 170 && xboxController.getPOV() < 190) {
238+
return Constants.ArmConstants.LIFT_SPEED * -1;
239+
}
240+
}
227241

228-
return liftHeights[currentHeight];
242+
if(mainJoystick != null && mainJoystick.isConnected() && secondaryJoystick != null && secondaryJoystick.isConnected()) {
243+
if(secondaryJoystick.getRawButtonPressed(5)) {
244+
return Constants.ArmConstants.LIFT_SPEED;
245+
} else if(secondaryJoystick.getRawButtonPressed(3)) {
246+
return Constants.ArmConstants.LIFT_SPEED * -1;
247+
}
248+
} else if(mainJoystick != null && mainJoystick.isConnected()) {
249+
if(mainJoystick.getRawButtonPressed(5)) {
250+
return Constants.ArmConstants.LIFT_SPEED;
251+
} else if(mainJoystick.getRawButtonPressed(3)) {
252+
return Constants.ArmConstants.LIFT_SPEED * -1;
253+
}
254+
}
255+
256+
return 0;
257+
}
258+
259+
260+
/**
261+
* Returns whether or not the coral flywheels should be moving based on whether or not the player
262+
* is pressing the right trigger/right bumper button.
263+
*/
264+
public boolean isCoralIntakeActivated() {
265+
if(xboxController != null &&xboxController.isConnected() == true) {
266+
if(xboxController.getRightBumperButton()) {
267+
return true;
268+
}
269+
}
270+
271+
if(mainJoystick != null && mainJoystick.isConnected() && secondaryJoystick != null && secondaryJoystick.isConnected()) {
272+
if(secondaryJoystick.getTrigger()) {
273+
return true;
274+
}
275+
} else if(mainJoystick != null && mainJoystick.isConnected()) {
276+
if(mainJoystick.getTrigger()) {
277+
return true;
278+
}
279+
}
280+
281+
return false;
229282
}
230283

231284
/**

0 commit comments

Comments
 (0)