Encoder

class Encoder

A wrapper for motor encoders in the FTC SDK.

Parameters

getPosition

the position supplier which points to the current position of the motor in ticks

getVelocity

the position supplier which points to the current velocity of the motor in ticks per second

Constructors

Link copied to clipboard
constructor(hMap: HardwareMap, id: String)

Constructs an encoder from the provided id of the corresponding motor.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The distance traveled by the encoder computed using distancePerTick.

Link copied to clipboard

The distance per revolution of the encoder.

Link copied to clipboard

The velocity of the encoder in units per second computed using distancePerTick.

Link copied to clipboard

The current position of the encoder in ticks.

Link copied to clipboard

Whether the encoder is reversed. Independent of motor direction.

Link copied to clipboard

The corrected velocity of the encoder in ticks per second, accounting for overflow.

Functions

Link copied to clipboard
fun reset()

Resets the encoder without having to stop the corresponding motor.

Link copied to clipboard

Reverses the encoder.

Link copied to clipboard