We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8aaf44 commit 5025dedCopy full SHA for 5025ded
src/main/java/frc/robot/RobotMap.java
@@ -42,7 +42,7 @@ public static class mapIntake {
42
public static final int INTAKE_ALGAE_CAN = 13;
43
44
// Coral intake sensors
45
- public static final int CORAL_INTAKE_SENSOR = 14; // Digital input for coral intake sensor
+ public static final int CORAL_INTAKE_SENSOR = 14;
46
}
47
48
// Elevator ID 21-30
src/main/java/frc/robot/subsystems/Intake.java
@@ -72,7 +72,7 @@ public Angle getLastDesiredPivotAngle() {
72
73
74
public void setIntakePivotMotor(double Angle) {
75
- intakePivotMotor.setVoltage(Angle);
+ intakePivotMotor.setPosition(Angle);
76
77
78
public void setCoralIntakeMotor(double speed) {
0 commit comments