Servo

class Servo @JvmOverloads constructor(servo: Servo, val range: Angle = 300.deg, clock: NanoClock = NanoClock.system) : Component

A wrapper for the Servo object in the FTC SDK.

Parameters

servo

the servo for this wrapper to use

range

the range of the servo

Constructors

Link copied to clipboard
constructor(hMap: HardwareMap, id: String, range: Angle = 180.deg, clock: NanoClock = NanoClock.system)
constructor(servo: Servo, range: Angle = 300.deg, clock: NanoClock = NanoClock.system)

Properties

Link copied to clipboard

Angular representation of the servo's position in the range [0.0, range]. Setting the angle sets position and vice versa. Note that the angle of the servo is independent of scaleRange, but the available angle range is not.

Link copied to clipboard

The currently available movement range of the servo. Affected by scaleRange.

Link copied to clipboard

The currently available movement range of the servo. Affected by scaleRange.

Link copied to clipboard
val internal: Servo
Link copied to clipboard

The position of this servo in the range [0.0, 1.0].

Link copied to clipboard
Link copied to clipboard
@get:JvmName(name = "isReversed")
var reversed: Boolean

Whether this servo is reversed.

Functions

Link copied to clipboard
fun goToAngle(angle: Angle, speed: Angle): Command

Returns a command that uses range and speed (specified in units per second) to go to the specified angle at the desired speed. Note that since there is no feedback from the servo, it may or may not actually achieve the desired speed.

fun goToAngle(angle: Angle, speed: Double): Command

Returns a command that goes to the specified angle at the desired speed. Note that since there is no feedback from the servo, it may or may not actually achieve the desired speed.

Link copied to clipboard
fun goToPosition(position: Double, speed: Angle): Command

Returns a command that uses range and speed (specified in units per second) to go to the specified position at the desired speed by slowly incrementing the position. Note that since there is no feedback from the servo, it may or may not actually achieve the desired speed.

fun goToPosition(position: Double, speed: Double): Command

Returns a command that goes to the specified position at the desired speed. Note that since there is no feedback from the servo, it may or may not actually achieve the desired speed.

Link copied to clipboard
fun scaleRange(min: Angle, max: Angle)

Scales the available movement range of the servo to be a subset of its maximum range. Subsequent positioning calls will operate within that subset range. This is useful if your servo has only a limited useful range of movement due to the physical hardware that it is manipulating (as is often the case) but you don't want to have to manually adjust the input to position each time. For example, if the range of the servo is 180°, and scaleRange(30°, 90°) is set; then servo positions will be clamped to fit in that range:

fun scaleRange(min: Double, max: Double)

Scales the available movement range of the servo to be a subset of its maximum range. Subsequent positioning calls will operate within that subset range. This is useful if your servo has only a limited useful range of movement due to the physical hardware that it is manipulating (as is often the case) but you don't want to have to manually scale and adjust the input to position each time. For example, if scaleRange(0.2, 0.8) is set; then servo positions will be scaled to fit in that range:

Link copied to clipboard
fun setReversed(reversed: Boolean): Servo
Link copied to clipboard
fun waitForAngle(angle: Angle, speed: Angle): Command

Returns a command that uses range and speed (specified in units per second) to estimate when the servo will reach the specified angle, and waits until that point.

fun waitForAngle(angle: Angle, speed: Double): Command

Returns a command that uses speed to estimate when the servo will reach the specified angle, and waits until that point.

Link copied to clipboard
fun waitForPosition(position: Double, speed: Angle): Command

Returns a command that uses range and speed (specified in units per second) to estimate when the servo will reach the specified position, and waits until that point.

fun waitForPosition(position: Double, speed: Double): Command

Returns a command that uses speed to estimate when the servo will reach the specified position, and waits until that point.