Servo
A wrapper for the Servo object in the FTC SDK.
Parameters
the servo for this wrapper to use
the range of the servo
Constructors
Properties
The currently available movement range of the servo. Affected by scaleRange.
The currently available movement range of the servo. Affected by scaleRange.
Functions
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.
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.
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.
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.
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:
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: