We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b4d7dc1 + f6e3d5c commit db2feafCopy full SHA for db2feaf
1 file changed
src/main/java/frc/robot/subsystems/groundintake/GroundIntakePivotIOReal.java
@@ -1,6 +1,7 @@
1
package frc.robot.subsystems.groundintake;
2
3
import com.ctre.phoenix6.configs.TalonFXConfiguration;
4
+import com.ctre.phoenix6.controls.PositionVoltage;
5
import com.ctre.phoenix6.hardware.TalonFX;
6
7
import frc.robot.Constants;
@@ -10,9 +11,11 @@ public class GroundIntakePivotIOReal implements GroundIntakePivotIO {
10
11
TalonFX groundIntakePivotMotor;
12
TalonFXConfiguration groundIntakeMotorPivotConfig;
13
14
+ private PositionVoltage positionVoltage = new PositionVoltage(0);
15
+
16
public GroundIntakePivotIOReal() {
17
- groundIntakePivotMotor = new TalonFX(Constants.G);
18
+ groundIntakePivotMotor = new TalonFX(Constants.GROUNDINTAKEPIVOTE_ID);
19
20
}
21
0 commit comments