Skip to content

Commit fde4894

Browse files
committedMar 15, 2024
0315-remove intake motor
1 parent d0ee3cd commit fde4894

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/main/java/frc/robot/commands/Auto.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void initialize() {
5151

5252
java.sql.Timestamp ts_init;
5353

54-
private final boolean noAuto = false;
54+
private final boolean noAuto = true;
5555

5656
// Called every time the scheduler runs while the command is scheduled.
5757
@Override

‎src/main/java/frc/robot/subsystems/IntakeMotors.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public IntakeMotors() {
4949
@Override
5050
public void periodic() {
5151
// This method will be called once per scheduler run
52-
intakeTalonSRX.set(ControlMode.PercentOutput, speed);
53-
intakeFlipSRX.set(ControlMode.Position, nowPos);
52+
// intakeTalonSRX.set(ControlMode.PercentOutput, speed);
53+
// intakeFlipSRX.set(ControlMode.Position, nowPos);
5454
SmartDashboard.putNumber("intakeFlipSRX_Pos", intakeFlipSRX.getSelectedSensorPosition());
5555
}
5656

0 commit comments

Comments
 (0)