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