Class LauncherWheel.Parameters
java.lang.Object
org.firstinspires.ftc.teamcode.fy25.subsystems.launcherwheel.LauncherWheel.Parameters
- Enclosing interface:
LauncherWheel
You must set some of these if this subsystem is present.
-
Field Summary
FieldsModifier and TypeFieldDescriptioncom.qualcomm.robotcore.hardware.DcMotorExTheDcMotorExthat runs the launch wheel, already instantiated and configured.com.qualcomm.robotcore.hardware.DcMotorExfinal booleanYou have already set this in the constructor and cannot set it again.doubleThe velocity at which the launch wheel will run, in ticks per second. -
Constructor Summary
ConstructorsConstructorDescriptionParameters(boolean present) Create a Parameters object and provide necessary parameters. -
Method Summary
-
Field Details
-
present
public final boolean presentYou have already set this in the constructor and cannot set it again. -
motor1
public com.qualcomm.robotcore.hardware.DcMotorEx motor1TheDcMotorExthat runs the launch wheel, already instantiated and configured. Defaults to aBlankMotor. -
motor2
public com.qualcomm.robotcore.hardware.DcMotorEx motor2 -
velocityRPM
public double velocityRPMThe velocity at which the launch wheel will run, in ticks per second. Defaults to 0.
-
-
Constructor Details
-
Parameters
public Parameters(boolean present) Create a Parameters object and provide necessary parameters.- Parameters:
present- Is this subsystem installed on this robot?
-