MotorGroup

class MotorGroup(motors: List<Motor>) : Component, List<Motor>

A class that runs multiple motors together as a unit.

Constructors

Link copied to clipboard
constructor(vararg motors: Motor)
constructor(vararg motors: MotorGroup)

Constructs a motor group out of several motor groups.

constructor(hMap: HardwareMap, maxRPM: Double, TPR: Double = 1.0, vararg ids: String)
constructor(hMap: HardwareMap, type: Motor.Type, vararg ids: String)
constructor(hMap: HardwareMap, maxRPM: Double, TPR: Double = 1.0, vararg ids: Pair<String, Boolean>)
constructor(hMap: HardwareMap, type: Motor.Type, vararg ids: Pair<String, Boolean>)
constructor(motors: List<Motor>)

Properties

Link copied to clipboard

The average currentPosition that all motors in the group have travelled.

Link copied to clipboard

The average distance that all motors in the group have travelled.

Link copied to clipboard

Returns the previously set distance per tick. Note that this may not accurately reflect the actual distance per tick of all the motors, since they are independent of each other.

Link copied to clipboard

The average distance velocity of all motors in the group.

Link copied to clipboard

Returns the previously set feedforward. Note that this may not accurately reflect the actual feedforward of all the motors, since they are independent of each other.

Link copied to clipboard

The maximum distance velocity that all motors in the group can achieve.

Link copied to clipboard

The maximum revolutions per minute that all motors in the group can achieve.

Link copied to clipboard

The maximum ticks per second velocity that all motors in the group can achieve.

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

Whether the motor group is reversed.

Link copied to clipboard

A list of the individual rotations of each motor.

Link copied to clipboard

Returns the previously set run mode. Note that this may not accurately reflect the actual run mode of all the motors, since they are independent of each other.

Link copied to clipboard

The average velocity of all motors in the group.

Link copied to clipboard

Returns the previously set PID coefficients. Note that this may not accurately reflect the actual coefficients of all the motors, since they are independent of each other.

Link copied to clipboard

Returns the previously set zero power behavior. Note that this may not accurately reflect the actual zero power behavior of all the motors, since they are independent of each other.

Functions

Link copied to clipboard

The distance that each motor in the group has travelled.

Link copied to clipboard

The distance velocity of each motor in the group.

Link copied to clipboard

The currentPosition that each motor in the group has travelled.

Link copied to clipboard

The velocity of each motor in the group.

Link copied to clipboard

Resets the encoders of all the motors in the group.

Link copied to clipboard

Reverses the direction of the motor group.

Link copied to clipboard
fun setDistanceVelocities(velocities: List<Double>, accelerations: List<Double> = emptyList())

Sets the velocities/accelerations of each motor in encoder ticks per second.

Link copied to clipboard
fun setDistanceVelocity(velocity: Double, acceleration: Double = 0.0)

Sets the velocity/acceleration of all motors in distance units per second.

Link copied to clipboard
fun setPower(power: Double)

Sets the percentage of power/velocity of all motors in the range [-1.0, 1.0].

Link copied to clipboard
fun setPowers(powers: List<Double>)

Sets the percentage of power/velocity of each motor in the range [-1.0, 1.0].

Link copied to clipboard
Link copied to clipboard
fun setRPM(rpm: Double)

Sets the velocity of all motors in revolutions per second.

Link copied to clipboard
fun setTickVelocities(velocities: List<Double>, accelerations: List<Double> = emptyList())

Sets the velocities/accelerations of each motor in encoder ticks per second.

Link copied to clipboard
fun setTickVelocity(velocity: Double, acceleration: Double = 0.0)

Sets the velocity/accleration of all motors in encoder ticks per second.

Link copied to clipboard
open override fun update()

Updates RunMode.RUN_USING_ENCODER. Running this method is not necessary for RunMode.RUN_WITHOUT_ENCODER.