Motor
A wrapper for the DcMotorEx object in the FTC SDK.
Parameters
The motor for the wrapper to use.
The maximum revolutions per minute of the motor.
The ticks per revolution of the motor.
Constructors
Types
Properties
The current position of the encoder (in ticks).
The distance travelled by the motor. Computed using the encoder and distancePerTick.
The distance per revolution travelled by the motor.
The velocity of the motor in distance per second. Computed using the encoder and distancePerTick.
Feedforward used in RunMode.RUN_USING_ENCODER and optionally RunMode.RUN_WITHOUT_ENCODER. Note that these coefficients are applied to desired encoder tick velocity. This must be tuned in order for setTickVelocity, setDistanceVelocity, and setRPM to work.
The maximum achievable distance velocity of the motor, in units per second. Computed using maxTPS and distancePerTick.
The target velocity of RunMode.RUN_USING_ENCODER in ticks per second.
PID coefficients used in RunMode.RUN_USING_ENCODER.
Functions
Resets the encoder.
Sets the velocity of the motor in distance units per second.
Sets the velocity of the motor in encoder ticks per second.
Updates both RunMode.RUN_USING_ENCODER and RunMode.RUN_TO_POSITION. Running this method is not necessary for RunMode.RUN_WITHOUT_ENCODER.